Struct kubewarden_policy_sdk::request::UserInfo[][src]

pub struct UserInfo {
    pub username: String,
    pub uid: String,
    pub groups: HashSet<String>,
    pub extra: HashMap<String, Value>,
}

UserInfo holds information about the user who made the request

Fields

username: String

The name that uniquely identifies this user among all active users.

uid: String

A unique value that identifies this user across time. If this user is deleted and another user by the same name is added, they will have different UIDs.

groups: HashSet<String>

The names of groups this user is a part of.

extra: HashMap<String, Value>

Any additional information provided by the authenticator.

Trait Implementations

impl Clone for UserInfo[src]

impl Debug for UserInfo[src]

impl Default for UserInfo[src]

impl<'de> Deserialize<'de> for UserInfo where
    UserInfo: Default
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.