pub struct IoK8sApiCoreV1VolumeDevice {
pub device_path: String,
pub name: String,
}
Expand description
volumeDevice describes a mapping of a raw block device within a container.
Fields§
§device_path: String
devicePath is the path inside of the container that the device will be mapped to.
name: String
name must match the name of a persistentVolumeClaim in the pod
Trait Implementations§
Source§impl Clone for IoK8sApiCoreV1VolumeDevice
impl Clone for IoK8sApiCoreV1VolumeDevice
Source§fn clone(&self) -> IoK8sApiCoreV1VolumeDevice
fn clone(&self) -> IoK8sApiCoreV1VolumeDevice
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 IoK8sApiCoreV1VolumeDevice
impl Debug for IoK8sApiCoreV1VolumeDevice
Source§impl<'de> Deserialize<'de> for IoK8sApiCoreV1VolumeDevice
impl<'de> Deserialize<'de> for IoK8sApiCoreV1VolumeDevice
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 From<&IoK8sApiCoreV1VolumeDevice> for IoK8sApiCoreV1VolumeDevice
impl From<&IoK8sApiCoreV1VolumeDevice> for IoK8sApiCoreV1VolumeDevice
Source§fn from(value: &IoK8sApiCoreV1VolumeDevice) -> Self
fn from(value: &IoK8sApiCoreV1VolumeDevice) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for IoK8sApiCoreV1VolumeDevice
impl RefUnwindSafe for IoK8sApiCoreV1VolumeDevice
impl Send for IoK8sApiCoreV1VolumeDevice
impl Sync for IoK8sApiCoreV1VolumeDevice
impl Unpin for IoK8sApiCoreV1VolumeDevice
impl UnwindSafe for IoK8sApiCoreV1VolumeDevice
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