pub struct DeploymentContainers {
pub name: String,
pub image: String,
pub imagePullPolicy: String,
pub command: Vec<String>,
pub resources: DeploymentResources,
pub ports: Vec<DeploymentPorts>,
pub livenessProbe: DeploymentProbe,
pub readinessProbe: DeploymentProbe,
pub env: Vec<DeploymentEnvs>,
}Fields§
§name: String§image: String§imagePullPolicy: String§command: Vec<String>§resources: DeploymentResources§ports: Vec<DeploymentPorts>§livenessProbe: DeploymentProbe§readinessProbe: DeploymentProbe§env: Vec<DeploymentEnvs>Trait Implementations§
Source§impl Debug for DeploymentContainers
impl Debug for DeploymentContainers
Source§impl Default for DeploymentContainers
impl Default for DeploymentContainers
Source§fn default() -> DeploymentContainers
fn default() -> DeploymentContainers
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeploymentContainers
impl<'de> Deserialize<'de> for DeploymentContainers
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
Auto Trait Implementations§
impl Freeze for DeploymentContainers
impl RefUnwindSafe for DeploymentContainers
impl Send for DeploymentContainers
impl Sync for DeploymentContainers
impl Unpin for DeploymentContainers
impl UnsafeUnpin for DeploymentContainers
impl UnwindSafe for DeploymentContainers
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