pub struct PlayKubeReport {
pub pods: Option<Vec<PlayKubePod>>,
pub rm_report: Option<Vec<PodRmReport>>,
pub secrets: Option<Vec<PlaySecret>>,
pub stop_report: Option<Vec<PodStopReport>>,
pub volumes: Option<Vec<PlayKubeVolume>>,
}
Fields§
§pods: Option<Vec<PlayKubePod>>
Pods - pods created by play kube.
rm_report: Option<Vec<PodRmReport>>
§secrets: Option<Vec<PlaySecret>>
§stop_report: Option<Vec<PodStopReport>>
§volumes: Option<Vec<PlayKubeVolume>>
Volumes - volumes created by play kube.
Trait Implementations§
Source§impl Clone for PlayKubeReport
impl Clone for PlayKubeReport
Source§fn clone(&self) -> PlayKubeReport
fn clone(&self) -> PlayKubeReport
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for PlayKubeReport
impl Debug for PlayKubeReport
Source§impl<'de> Deserialize<'de> for PlayKubeReport
impl<'de> Deserialize<'de> for PlayKubeReport
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<PlayKubeReport, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<PlayKubeReport, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for PlayKubeReport
impl PartialEq for PlayKubeReport
Source§impl Serialize for PlayKubeReport
impl Serialize for PlayKubeReport
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for PlayKubeReport
Auto Trait Implementations§
impl Freeze for PlayKubeReport
impl RefUnwindSafe for PlayKubeReport
impl Send for PlayKubeReport
impl Sync for PlayKubeReport
impl Unpin for PlayKubeReport
impl UnwindSafe for PlayKubeReport
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