pub struct Pod {
pub metadata: Metadata,
pub spec: PodSpec,
pub status: PodStatus,
}Expand description
Pod object definition
Fields§
§metadata: MetadataPod metadata
spec: PodSpecPod desired specification
status: PodStatusPod current status
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Pod
impl<'de> Deserialize<'de> for Pod
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 Pod
impl RefUnwindSafe for Pod
impl Send for Pod
impl Sync for Pod
impl Unpin for Pod
impl UnsafeUnpin for Pod
impl UnwindSafe for Pod
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