pub struct DeviceConfigStatusDriver {
pub available_number: Option<i32>,
pub desired_number: Option<i32>,
pub nodes_matching_selector_number: Option<i32>,
}Expand description
Driver contains the status of the Drivers 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 DeviceConfigStatusDriver
impl Clone for DeviceConfigStatusDriver
Source§fn clone(&self) -> DeviceConfigStatusDriver
fn clone(&self) -> DeviceConfigStatusDriver
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 Debug for DeviceConfigStatusDriver
impl Debug for DeviceConfigStatusDriver
Source§impl Default for DeviceConfigStatusDriver
impl Default for DeviceConfigStatusDriver
Source§fn default() -> DeviceConfigStatusDriver
fn default() -> DeviceConfigStatusDriver
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeviceConfigStatusDriver
impl<'de> Deserialize<'de> for DeviceConfigStatusDriver
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 DeviceConfigStatusDriver
impl PartialEq for DeviceConfigStatusDriver
Source§impl Serialize for DeviceConfigStatusDriver
impl Serialize for DeviceConfigStatusDriver
impl StructuralPartialEq for DeviceConfigStatusDriver
Auto Trait Implementations§
impl Freeze for DeviceConfigStatusDriver
impl RefUnwindSafe for DeviceConfigStatusDriver
impl Send for DeviceConfigStatusDriver
impl Sync for DeviceConfigStatusDriver
impl Unpin for DeviceConfigStatusDriver
impl UnwindSafe for DeviceConfigStatusDriver
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