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

pub struct NonResourceAttributes {
    pub path: Option<String>,
    pub verb: Option<String>,
}

NonResourceAttributes includes the authorization attributes available for non-resource requests to the Authorizer interface

Fields

Path is the URL path of the request

Verb is the standard HTTP verb

Trait Implementations

impl Clone for NonResourceAttributes
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for NonResourceAttributes
[src]

Formats the value using the given formatter. Read more

impl Default for NonResourceAttributes
[src]

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

impl PartialEq for NonResourceAttributes
[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 NonResourceAttributes
[src]

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for NonResourceAttributes
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations