[][src]Struct k8s_openapi::api::authorization::v1beta1::SubjectRulesReviewStatus

pub struct SubjectRulesReviewStatus {
    pub evaluation_error: Option<String>,
    pub incomplete: bool,
    pub non_resource_rules: Vec<NonResourceRule>,
    pub resource_rules: Vec<ResourceRule>,
}

SubjectRulesReviewStatus contains the result of a rules check. This check can be incomplete depending on the set of authorizers the server is configured with and any errors experienced during evaluation. Because authorization rules are additive, if a rule appears in a list it's safe to assume the subject has that permission, even if that list is incomplete.

Fields

evaluation_error: Option<String>

EvaluationError can appear in combination with Rules. It indicates an error occurred during rule evaluation, such as an authorizer that doesn't support rule evaluation, and that ResourceRules and/or NonResourceRules may be incomplete.

incomplete: bool

Incomplete is true when the rules returned by this call are incomplete. This is most commonly encountered when an authorizer, such as an external authorizer, doesn't support rules evaluation.

non_resource_rules: Vec<NonResourceRule>

NonResourceRules is the list of actions the subject is allowed to perform on non-resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete.

resource_rules: Vec<ResourceRule>

ResourceRules is the list of actions the subject is allowed to perform on resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete.

Trait Implementations

impl Clone for SubjectRulesReviewStatus[src]

impl Debug for SubjectRulesReviewStatus[src]

impl Default for SubjectRulesReviewStatus[src]

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

impl PartialEq<SubjectRulesReviewStatus> for SubjectRulesReviewStatus[src]

impl Serialize for SubjectRulesReviewStatus[src]

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