Struct k8s_openapi::api::core::v1::PhotonPersistentDiskVolumeSource
source · [−]Expand description
Represents a Photon Controller persistent disk resource.
Fields
fs_type: Option<String>
fsType is the filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. “ext4”, “xfs”, “ntfs”. Implicitly inferred to be “ext4” if unspecified.
pd_id: String
pdID is the ID that identifies Photon Controller persistent disk
Trait Implementations
sourceimpl Clone for PhotonPersistentDiskVolumeSource
impl Clone for PhotonPersistentDiskVolumeSource
sourcefn clone(&self) -> PhotonPersistentDiskVolumeSource
fn clone(&self) -> PhotonPersistentDiskVolumeSource
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 more
sourceimpl Default for PhotonPersistentDiskVolumeSource
impl Default for PhotonPersistentDiskVolumeSource
sourcefn default() -> PhotonPersistentDiskVolumeSource
fn default() -> PhotonPersistentDiskVolumeSource
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for PhotonPersistentDiskVolumeSource
impl<'de> Deserialize<'de> for PhotonPersistentDiskVolumeSource
sourcefn 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
sourceimpl PartialEq<PhotonPersistentDiskVolumeSource> for PhotonPersistentDiskVolumeSource
impl PartialEq<PhotonPersistentDiskVolumeSource> for PhotonPersistentDiskVolumeSource
sourcefn eq(&self, other: &PhotonPersistentDiskVolumeSource) -> bool
fn eq(&self, other: &PhotonPersistentDiskVolumeSource) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &PhotonPersistentDiskVolumeSource) -> bool
fn ne(&self, other: &PhotonPersistentDiskVolumeSource) -> bool
This method tests for !=
.
impl StructuralPartialEq for PhotonPersistentDiskVolumeSource
Auto Trait Implementations
impl RefUnwindSafe for PhotonPersistentDiskVolumeSource
impl Send for PhotonPersistentDiskVolumeSource
impl Sync for PhotonPersistentDiskVolumeSource
impl Unpin for PhotonPersistentDiskVolumeSource
impl UnwindSafe for PhotonPersistentDiskVolumeSource
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more