pub struct NodesConfigGetConfigResponseData {
pub acme: Option<Box<PveAcmeField>>,
pub ballooning_target: Option<i32>,
pub description: Option<String>,
pub digest: Option<String>,
pub location: Option<Box<PveNodesConfigLocationField>>,
pub startall_onboot_delay: Option<i32>,
pub wakeonlan: Option<Box<PveWakeonlanField>>,
pub acmedomains: Option<HashMap<u32, PveAcmedomainField>>,
}Fields§
§acme: Option<Box<PveAcmeField>>Node specific ACME settings.
ballooning_target: Option<i32>RAM usage target for ballooning (in percent of total memory)
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.
location: Option<Box<PveNodesConfigLocationField>>The location of the node. Overrides the default from the datacenter config.
startall_onboot_delay: Option<i32>Initial delay in seconds, before starting all the Virtual Guests with on-boot enabled.
wakeonlan: Option<Box<PveWakeonlanField>>Node specific wake on LAN settings.
acmedomains: Option<HashMap<u32, PveAcmedomainField>>Acmedomains family. Wire form: acmedomain0..acmedomain8. Serialised by the manual impls below.
Implementations§
Trait Implementations§
Source§impl Clone for NodesConfigGetConfigResponseData
impl Clone for NodesConfigGetConfigResponseData
Source§fn clone(&self) -> NodesConfigGetConfigResponseData
fn clone(&self) -> NodesConfigGetConfigResponseData
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for NodesConfigGetConfigResponseData
impl Default for NodesConfigGetConfigResponseData
Source§fn default() -> NodesConfigGetConfigResponseData
fn default() -> NodesConfigGetConfigResponseData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NodesConfigGetConfigResponseData
impl<'de> Deserialize<'de> for NodesConfigGetConfigResponseData
Source§fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for NodesConfigGetConfigResponseData
impl PartialEq for NodesConfigGetConfigResponseData
Source§fn eq(&self, other: &NodesConfigGetConfigResponseData) -> bool
fn eq(&self, other: &NodesConfigGetConfigResponseData) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for NodesConfigGetConfigResponseData
Auto Trait Implementations§
impl Freeze for NodesConfigGetConfigResponseData
impl RefUnwindSafe for NodesConfigGetConfigResponseData
impl Send for NodesConfigGetConfigResponseData
impl Sync for NodesConfigGetConfigResponseData
impl Unpin for NodesConfigGetConfigResponseData
impl UnsafeUnpin for NodesConfigGetConfigResponseData
impl UnwindSafe for NodesConfigGetConfigResponseData
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