[][src]Struct openshift_openapi::api::security::v1::PodSecurityPolicySubjectReviewStatus

pub struct PodSecurityPolicySubjectReviewStatus {
    pub allowed_by: Option<ObjectReference>,
    pub reason: Option<String>,
    pub template: Option<PodTemplateSpec>,
}

PodSecurityPolicySubjectReviewStatus contains information/status for PodSecurityPolicySubjectReview.

Fields

allowed_by: Option<ObjectReference>

allowedBy is a reference to the rule that allows the PodTemplateSpec. A rule can be a SecurityContextConstraint or a PodSecurityPolicy A nil, indicates that it was denied.

reason: Option<String>

A machine-readable description of why this operation is in the "Failure" status. If this value is empty there is no information available.

template: Option<PodTemplateSpec>

template is the PodTemplateSpec after the defaulting is applied.

Trait Implementations

impl Clone for PodSecurityPolicySubjectReviewStatus[src]

impl Debug for PodSecurityPolicySubjectReviewStatus[src]

impl Default for PodSecurityPolicySubjectReviewStatus[src]

impl<'de> Deserialize<'de> for PodSecurityPolicySubjectReviewStatus[src]

impl PartialEq<PodSecurityPolicySubjectReviewStatus> for PodSecurityPolicySubjectReviewStatus[src]

impl Serialize for PodSecurityPolicySubjectReviewStatus[src]

impl StructuralPartialEq for PodSecurityPolicySubjectReviewStatus[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.