pub struct DeviceConfigCommonConfigUtilsContainer {
pub image: Option<String>,
pub image_pull_policy: Option<DeviceConfigCommonConfigUtilsContainerImagePullPolicy>,
pub image_registry_secret: Option<DeviceConfigCommonConfigUtilsContainerImageRegistrySecret>,
}Expand description
UtilsContainer contains parameters to configure operator’s utils container
Fields§
§image: Option<String>Image is the image of utils container
image_pull_policy: Option<DeviceConfigCommonConfigUtilsContainerImagePullPolicy>image pull policy for utils container
image_registry_secret: Option<DeviceConfigCommonConfigUtilsContainerImageRegistrySecret>secret used for pull utils container image
Trait Implementations§
Source§impl Clone for DeviceConfigCommonConfigUtilsContainer
impl Clone for DeviceConfigCommonConfigUtilsContainer
Source§fn clone(&self) -> DeviceConfigCommonConfigUtilsContainer
fn clone(&self) -> DeviceConfigCommonConfigUtilsContainer
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 DeviceConfigCommonConfigUtilsContainer
impl Default for DeviceConfigCommonConfigUtilsContainer
Source§fn default() -> DeviceConfigCommonConfigUtilsContainer
fn default() -> DeviceConfigCommonConfigUtilsContainer
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeviceConfigCommonConfigUtilsContainer
impl<'de> Deserialize<'de> for DeviceConfigCommonConfigUtilsContainer
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 DeviceConfigCommonConfigUtilsContainer
impl PartialEq for DeviceConfigCommonConfigUtilsContainer
Source§fn eq(&self, other: &DeviceConfigCommonConfigUtilsContainer) -> bool
fn eq(&self, other: &DeviceConfigCommonConfigUtilsContainer) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DeviceConfigCommonConfigUtilsContainer
Auto Trait Implementations§
impl Freeze for DeviceConfigCommonConfigUtilsContainer
impl RefUnwindSafe for DeviceConfigCommonConfigUtilsContainer
impl Send for DeviceConfigCommonConfigUtilsContainer
impl Sync for DeviceConfigCommonConfigUtilsContainer
impl Unpin for DeviceConfigCommonConfigUtilsContainer
impl UnwindSafe for DeviceConfigCommonConfigUtilsContainer
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