From c735b4bde0259f447b95153e12501bcfd41e8166 Mon Sep 17 00:00:00 2001 From: Wolfgang Bumiller Date: Wed, 7 Apr 2021 10:47:19 +0200 Subject: [PATCH] api: enable Updater for usize, isize, f32, f64, char Signed-off-by: Wolfgang Bumiller --- proxmox/src/api/schema.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxmox/src/api/schema.rs b/proxmox/src/api/schema.rs index 142f68c0..4b5ce06e 100644 --- a/proxmox/src/api/schema.rs +++ b/proxmox/src/api/schema.rs @@ -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 Updatable for Option where