pub struct GetOutput {
pub acme: Option<String>,
pub acmedomains: HashMap<u32, 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
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 GetOutput
impl<'de> Deserialize<'de> for GetOutput
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 GetOutput
impl RefUnwindSafe for GetOutput
impl Send for GetOutput
impl Sync for GetOutput
impl Unpin for GetOutput
impl UnwindSafe for GetOutput
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