pub struct K8sEnvVar {
pub name: String,
pub value: Option<String>,
pub value_from: Option<Value>,
}Fields§
§name: String§value: Option<String>§value_from: Option<Value>Trait Implementations§
Source§impl<'de> Deserialize<'de> for K8sEnvVar
impl<'de> Deserialize<'de> for K8sEnvVar
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 K8sEnvVar
impl RefUnwindSafe for K8sEnvVar
impl Send for K8sEnvVar
impl Sync for K8sEnvVar
impl Unpin for K8sEnvVar
impl UnsafeUnpin for K8sEnvVar
impl UnwindSafe for K8sEnvVar
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