pub struct K8sSecret {
pub api_version: String,
pub kind: String,
pub metadata: K8sMetadata,
pub secret_type: Option<String>,
pub data: HashMap<String, String>,
pub string_data: Option<HashMap<String, String>>,
}Expand description
Kubernetes Secret
Fields§
§api_version: String§kind: String§metadata: K8sMetadata§secret_type: Option<String>§data: HashMap<String, String>§string_data: Option<HashMap<String, String>>Trait Implementations§
Source§impl<'de> Deserialize<'de> for K8sSecret
impl<'de> Deserialize<'de> for K8sSecret
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 K8sSecret
impl RefUnwindSafe for K8sSecret
impl Send for K8sSecret
impl Sync for K8sSecret
impl Unpin for K8sSecret
impl UnsafeUnpin for K8sSecret
impl UnwindSafe for K8sSecret
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