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

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

ServiceAccountPodSecurityPolicyReviewStatus represents ServiceAccount name and related review status

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.

name: String

name contains the allowed and the denied ServiceAccount name

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 ServiceAccountPodSecurityPolicyReviewStatus[src]

impl Debug for ServiceAccountPodSecurityPolicyReviewStatus[src]

impl Default for ServiceAccountPodSecurityPolicyReviewStatus[src]

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

impl PartialEq<ServiceAccountPodSecurityPolicyReviewStatus> for ServiceAccountPodSecurityPolicyReviewStatus[src]

impl Serialize for ServiceAccountPodSecurityPolicyReviewStatus[src]

impl StructuralPartialEq for ServiceAccountPodSecurityPolicyReviewStatus[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.