[][src]Struct k8s_openapi::api::storage::v1::VolumeNodeResources

pub struct VolumeNodeResources {
    pub count: Option<i32>,
}

VolumeNodeResources is a set of resource limits for scheduling of volumes.

Fields

count: Option<i32>

Maximum number of unique volumes managed by the CSI driver that can be used on a node. A volume that is both attached and mounted on a node is considered to be used once, not twice. The same rule applies for a unique volume that is shared among multiple pods on the same node. If this field is not specified, then the supported number of volumes on this node is unbounded.

Trait Implementations

impl Clone for VolumeNodeResources[src]

impl Debug for VolumeNodeResources[src]

impl Default for VolumeNodeResources[src]

impl<'de> Deserialize<'de> for VolumeNodeResources[src]

impl PartialEq<VolumeNodeResources> for VolumeNodeResources[src]

impl Serialize for VolumeNodeResources[src]

impl StructuralPartialEq for VolumeNodeResources[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.