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

impl Debug for SubjectAccessReviewStatus[src]

impl Default for SubjectAccessReviewStatus[src]

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

impl PartialEq<SubjectAccessReviewStatus> for SubjectAccessReviewStatus[src]

impl Serialize for SubjectAccessReviewStatus[src]

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