Struct k8s_openapi::v1_8::api::authorization::v1::SelfSubjectAccessReviewSpec[][src]

pub struct SelfSubjectAccessReviewSpec {
    pub non_resource_attributes: Option<NonResourceAttributes>,
    pub resource_attributes: Option<ResourceAttributes>,
}

SelfSubjectAccessReviewSpec is a description of the access request. Exactly one of ResourceAuthorizationAttributes and NonResourceAuthorizationAttributes must be set

Fields

NonResourceAttributes describes information for a non-resource access request

ResourceAuthorizationAttributes describes information for a resource access request

Trait Implementations

impl Clone for SelfSubjectAccessReviewSpec
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for SelfSubjectAccessReviewSpec
[src]

Formats the value using the given formatter. Read more

impl Default for SelfSubjectAccessReviewSpec
[src]

Returns the "default value" for a type. Read more

impl PartialEq for SelfSubjectAccessReviewSpec
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

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

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for SelfSubjectAccessReviewSpec
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations