Struct k8s_openapi_ext::storagev1::CSINodeSpec  
source · [−]pub struct CSINodeSpec {
    pub drivers: Vec<CSINodeDriver, Global>,
}Expand description
CSINodeSpec holds information about the specification of all CSI drivers installed on a node
Fields
drivers: Vec<CSINodeDriver, Global>drivers is a list of information of all CSI Drivers existing on a node. If all drivers in the list are uninstalled, this can become empty.
Trait Implementations
sourceimpl Clone for CSINodeSpec
 
impl Clone for CSINodeSpec
sourcefn clone(&self) -> CSINodeSpec
 
fn clone(&self) -> CSINodeSpec
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moresourceimpl Debug for CSINodeSpec
 
impl Debug for CSINodeSpec
sourceimpl DeepMerge for CSINodeSpec
 
impl DeepMerge for CSINodeSpec
sourcefn merge_from(&mut self, other: CSINodeSpec)
 
fn merge_from(&mut self, other: CSINodeSpec)
Merge 
other into self.sourceimpl Default for CSINodeSpec
 
impl Default for CSINodeSpec
sourcefn default() -> CSINodeSpec
 
fn default() -> CSINodeSpec
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for CSINodeSpec
 
impl<'de> Deserialize<'de> for CSINodeSpec
sourcefn deserialize<D>(
    deserializer: D
) -> Result<CSINodeSpec, <D as Deserializer<'de>>::Error>where
    D: Deserializer<'de>,
 
fn deserialize<D>(
    deserializer: D
) -> Result<CSINodeSpec, <D as Deserializer<'de>>::Error>where
    D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl PartialEq<CSINodeSpec> for CSINodeSpec
 
impl PartialEq<CSINodeSpec> for CSINodeSpec
sourcefn eq(&self, other: &CSINodeSpec) -> bool
 
fn eq(&self, other: &CSINodeSpec) -> bool
sourceimpl Serialize for CSINodeSpec
 
impl Serialize for CSINodeSpec
sourcefn serialize<S>(
    &self,
    serializer: S
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
    S: Serializer,
 
fn serialize<S>(
    &self,
    serializer: S
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
    S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for CSINodeSpec
Auto Trait Implementations
impl RefUnwindSafe for CSINodeSpec
impl Send for CSINodeSpec
impl Sync for CSINodeSpec
impl Unpin for CSINodeSpec
impl UnwindSafe for CSINodeSpec
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more