[−][src]Struct k8s_openapi::api::authorization::v1beta1::SubjectRulesReviewStatus
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]
pub fn clone(&self) -> SubjectRulesReviewStatus
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Debug for SubjectRulesReviewStatus
[src]
impl Default for SubjectRulesReviewStatus
[src]
pub fn default() -> SubjectRulesReviewStatus
[src]
impl<'de> Deserialize<'de> for SubjectRulesReviewStatus
[src]
pub fn deserialize<D>(deserializer: D) -> Result<Self, D::Error> where
D: Deserializer<'de>,
[src]
D: Deserializer<'de>,
impl PartialEq<SubjectRulesReviewStatus> for SubjectRulesReviewStatus
[src]
pub fn eq(&self, other: &SubjectRulesReviewStatus) -> bool
[src]
pub fn ne(&self, other: &SubjectRulesReviewStatus) -> bool
[src]
impl Serialize for SubjectRulesReviewStatus
[src]
impl StructuralPartialEq for SubjectRulesReviewStatus
[src]
Auto Trait Implementations
impl RefUnwindSafe for SubjectRulesReviewStatus
[src]
impl Send for SubjectRulesReviewStatus
[src]
impl Sync for SubjectRulesReviewStatus
[src]
impl Unpin for SubjectRulesReviewStatus
[src]
impl UnwindSafe for SubjectRulesReviewStatus
[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,