[−][src]Struct k8s_openapi::api::core::v1::PersistentVolumeClaimSpec
PersistentVolumeClaimSpec describes the common attributes of storage devices and allows a Source for provider-specific attributes
Fields
access_modes: Option<Vec<String>>
AccessModes contains the desired access modes the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1
data_source: Option<TypedLocalObjectReference>
This field can be used to specify either: * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot) * An existing PVC (PersistentVolumeClaim) * An existing custom resource that implements data population (Alpha) In order to use custom resource types that implement data population, the AnyVolumeDataSource feature gate must be enabled. If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source.
resources: Option<ResourceRequirements>
Resources represents the minimum resources the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources
selector: Option<LabelSelector>
A label query over volumes to consider for binding.
storage_class_name: Option<String>
Name of the StorageClass required by the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1
volume_mode: Option<String>
volumeMode defines what type of volume is required by the claim. Value of Filesystem is implied when not included in claim spec.
volume_name: Option<String>
VolumeName is the binding reference to the PersistentVolume backing this claim.
Trait Implementations
impl Clone for PersistentVolumeClaimSpec
[src]
pub fn clone(&self) -> PersistentVolumeClaimSpec
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Debug for PersistentVolumeClaimSpec
[src]
impl Default for PersistentVolumeClaimSpec
[src]
pub fn default() -> PersistentVolumeClaimSpec
[src]
impl<'de> Deserialize<'de> for PersistentVolumeClaimSpec
[src]
pub fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>,
[src]
D: Deserializer<'de>,
impl PartialEq<PersistentVolumeClaimSpec> for PersistentVolumeClaimSpec
[src]
pub fn eq(&self, other: &PersistentVolumeClaimSpec) -> bool
[src]
pub fn ne(&self, other: &PersistentVolumeClaimSpec) -> bool
[src]
impl Serialize for PersistentVolumeClaimSpec
[src]
impl StructuralPartialEq for PersistentVolumeClaimSpec
[src]
Auto Trait Implementations
impl RefUnwindSafe for PersistentVolumeClaimSpec
[src]
impl Send for PersistentVolumeClaimSpec
[src]
impl Sync for PersistentVolumeClaimSpec
[src]
impl Unpin for PersistentVolumeClaimSpec
[src]
impl UnwindSafe for PersistentVolumeClaimSpec
[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,