[][src]Struct k8s_openapi::api::authorization::v1::SubjectAccessReviewStatus

pub struct SubjectAccessReviewStatus {
    pub allowed: bool,
    pub denied: Option<bool>,
    pub evaluation_error: Option<String>,
    pub reason: Option<String>,
}

SubjectAccessReviewStatus

Fields

allowed: bool

Allowed is required. True if the action would be allowed, false otherwise.

denied: Option<bool>

Denied is optional. True if the action would be denied, otherwise false. If both allowed is false and denied is false, then the authorizer has no opinion on whether to authorize the action. Denied may not be true if Allowed is true.

evaluation_error: Option<String>

EvaluationError is an indication that some error occurred during the authorization check. It is entirely possible to get an error and be able to continue determine authorization status in spite of it. For instance, RBAC can be missing a role, but enough roles are still present and bound to reason about the request.

reason: Option<String>

Reason is optional. It indicates why a request was allowed or denied.

Trait Implementations

impl Clone for SubjectAccessReviewStatus[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq<SubjectAccessReviewStatus> for SubjectAccessReviewStatus[src]

impl Default for SubjectAccessReviewStatus[src]

impl Debug for SubjectAccessReviewStatus[src]

impl Serialize for SubjectAccessReviewStatus[src]

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

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.

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