pub struct DeviceConfigStatusConfigManager {
pub available_number: Option<i32>,
pub desired_number: Option<i32>,
pub nodes_matching_selector_number: Option<i32>,
}Expand description
ConfigManager contains the status of the ConfigManager deployment
Fields§
§available_number: Option<i32>number of the actually deployed and running pods
desired_number: Option<i32>number of the pods that should be deployed for daemonset
nodes_matching_selector_number: Option<i32>number of nodes that are targeted by the DeviceConfig selector
Trait Implementations§
Source§impl Clone for DeviceConfigStatusConfigManager
impl Clone for DeviceConfigStatusConfigManager
Source§fn clone(&self) -> DeviceConfigStatusConfigManager
fn clone(&self) -> DeviceConfigStatusConfigManager
Returns a duplicate of the value. Read more
1.0.0 · 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 DeviceConfigStatusConfigManager
impl Default for DeviceConfigStatusConfigManager
Source§fn default() -> DeviceConfigStatusConfigManager
fn default() -> DeviceConfigStatusConfigManager
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeviceConfigStatusConfigManager
impl<'de> Deserialize<'de> for DeviceConfigStatusConfigManager
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
Source§impl PartialEq for DeviceConfigStatusConfigManager
impl PartialEq for DeviceConfigStatusConfigManager
Source§fn eq(&self, other: &DeviceConfigStatusConfigManager) -> bool
fn eq(&self, other: &DeviceConfigStatusConfigManager) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DeviceConfigStatusConfigManager
Auto Trait Implementations§
impl Freeze for DeviceConfigStatusConfigManager
impl RefUnwindSafe for DeviceConfigStatusConfigManager
impl Send for DeviceConfigStatusConfigManager
impl Sync for DeviceConfigStatusConfigManager
impl Unpin for DeviceConfigStatusConfigManager
impl UnwindSafe for DeviceConfigStatusConfigManager
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