pub struct PlayKubeReport {
pub pods: Option<Vec<PlayKubePod>>,
pub rm_report: Option<Vec<PodRmReport>>,
pub secret_rm_report: Option<Vec<SecretRmReport>>,
pub secrets: Option<Vec<PlaySecret>>,
pub service_container_id: Option<String>,
pub stop_report: Option<Vec<PodStopReport>>,
pub volume_rm_report: Option<Vec<VolumeRmReport>>,
pub volumes: Option<Vec<PlayKubeVolume>>,
}
Fields§
§pods: Option<Vec<PlayKubePod>>
Pods - pods created by play kube.
rm_report: Option<Vec<PodRmReport>>
§secret_rm_report: Option<Vec<SecretRmReport>>
§secrets: Option<Vec<PlaySecret>>
Secrets - secrets created by play kube
service_container_id: Option<String>
ServiceContainerID - ID of the service container if one is created
stop_report: Option<Vec<PodStopReport>>
§volume_rm_report: Option<Vec<VolumeRmReport>>
§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<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
Source§impl PartialEq for PlayKubeReport
impl PartialEq for PlayKubeReport
Source§impl Serialize for PlayKubeReport
impl Serialize for PlayKubeReport
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