Struct podman_rest_client::v5::models::PlayKubeReport
source · pub struct PlayKubeReport {
pub exit_code: Option<i32>,
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>>,
}
Available on crate feature
v5
only.Fields§
§exit_code: Option<i32>
If set, exit with the specified exit code.
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 Debug for PlayKubeReport
impl Debug for PlayKubeReport
source§impl Default for PlayKubeReport
impl Default for PlayKubeReport
source§fn default() -> PlayKubeReport
fn default() -> PlayKubeReport
Returns the “default value” for a type. Read more
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
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