pub struct IntegrationTemplateSpecInitContainersVolumeDevices {
pub device_path: String,
pub name: String,
}Expand description
volumeDevice describes a mapping of a raw block device within a container.
Fields§
§device_path: StringdevicePath is the path inside of the container that the device will be mapped to.
name: Stringname must match the name of a persistentVolumeClaim in the pod
Trait Implementations§
Source§impl Clone for IntegrationTemplateSpecInitContainersVolumeDevices
impl Clone for IntegrationTemplateSpecInitContainersVolumeDevices
Source§fn clone(&self) -> IntegrationTemplateSpecInitContainersVolumeDevices
fn clone(&self) -> IntegrationTemplateSpecInitContainersVolumeDevices
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 Default for IntegrationTemplateSpecInitContainersVolumeDevices
impl Default for IntegrationTemplateSpecInitContainersVolumeDevices
Source§fn default() -> IntegrationTemplateSpecInitContainersVolumeDevices
fn default() -> IntegrationTemplateSpecInitContainersVolumeDevices
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IntegrationTemplateSpecInitContainersVolumeDevices
impl<'de> Deserialize<'de> for IntegrationTemplateSpecInitContainersVolumeDevices
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 PartialEq for IntegrationTemplateSpecInitContainersVolumeDevices
impl PartialEq for IntegrationTemplateSpecInitContainersVolumeDevices
Source§fn eq(&self, other: &IntegrationTemplateSpecInitContainersVolumeDevices) -> bool
fn eq(&self, other: &IntegrationTemplateSpecInitContainersVolumeDevices) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for IntegrationTemplateSpecInitContainersVolumeDevices
Auto Trait Implementations§
impl Freeze for IntegrationTemplateSpecInitContainersVolumeDevices
impl RefUnwindSafe for IntegrationTemplateSpecInitContainersVolumeDevices
impl Send for IntegrationTemplateSpecInitContainersVolumeDevices
impl Sync for IntegrationTemplateSpecInitContainersVolumeDevices
impl Unpin for IntegrationTemplateSpecInitContainersVolumeDevices
impl UnwindSafe for IntegrationTemplateSpecInitContainersVolumeDevices
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