Struct k8s_openapi::v1_7::kubernetes::pkg::apis::authentication::v1::TokenReviewSpec[][src]

pub struct TokenReviewSpec {
    pub token: Option<String>,
}

TokenReviewSpec is a description of the token authentication request.

Fields

Token is the opaque bearer token.

Trait Implementations

impl Clone for TokenReviewSpec
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for TokenReviewSpec
[src]

Formats the value using the given formatter. Read more

impl Default for TokenReviewSpec
[src]

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

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

Deserialize this value from the given Serde deserializer. Read more

impl Serialize for TokenReviewSpec
[src]

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations