diff --git a/proxmox-schema/src/schema.rs b/proxmox-schema/src/schema.rs index 34135f45..5e6e8185 100644 --- a/proxmox-schema/src/schema.rs +++ b/proxmox-schema/src/schema.rs @@ -1179,6 +1179,11 @@ where type Updater = T::Updater; } +// this will replace the whole Vec +impl UpdaterType for Vec { + type Updater = Option; +} + pub trait ApiType { const API_SCHEMA: Schema; }