pub struct PutParams {
pub acme: Option<String>,
pub acmedomains: HashMap<u32, String>,
pub delete: Option<String>,
pub description: Option<String>,
pub digest: Option<String>,
pub startall_onboot_delay: Option<u64>,
pub wakeonlan: Option<String>,
pub additional_properties: HashMap<String, Value>,
}
Fields§
§acme: Option<String>
Node specific ACME settings.
acmedomains: HashMap<u32, String>
ACME domain and validation plugin
delete: Option<String>
A list of settings you want to delete.
description: Option<String>
Description for the Node. Shown in the web-interface node notes panel. This is saved as comment inside the configuration file.
digest: Option<String>
Prevent changes if current configuration file has different SHA1 digest. This can be used to prevent concurrent modifications.
startall_onboot_delay: Option<u64>
Initial delay in seconds, before starting all the Virtual Guests with on-boot enabled.
wakeonlan: Option<String>
Node specific wake on LAN settings.
additional_properties: HashMap<String, Value>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for PutParams
impl<'de> Deserialize<'de> for PutParams
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for PutParams
impl RefUnwindSafe for PutParams
impl Send for PutParams
impl Sync for PutParams
impl Unpin for PutParams
impl UnwindSafe for PutParams
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more