api: enable Updater for usize, isize, f32, f64, char

Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
This commit is contained in:
Wolfgang Bumiller 2021-04-07 10:47:19 +02:00
parent 248335df36
commit c735b4bde0

View File

@ -1570,7 +1570,7 @@ macro_rules! basic_updatable {
)* )*
}; };
} }
basic_updatable! { bool u8 u16 u32 u64 i8 i16 i32 i64 String } basic_updatable! { bool u8 u16 u32 u64 i8 i16 i32 i64 usize isize f32 f64 String char }
impl<T> Updatable for Option<T> impl<T> Updatable for Option<T>
where where