pub struct UserIdentity {
    pub key: Vec<u8>,
    pub cert: Vec<u8>,
    pub ca: Vec<u8>,
}
Expand description

Describe the identity to be used when connecting to the Kubernetes API server

Fields

key: Vec<u8>

Private key assigned to the user

cert: Vec<u8>

Certificate assigned to the user

ca: Vec<u8>

CA that issued the certificate

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.