[][src]Struct k8s_openapi::api::flowcontrol::v1alpha1::Subject

pub struct Subject {
    pub group: Option<GroupSubject>,
    pub kind: String,
    pub service_account: Option<ServiceAccountSubject>,
    pub user: Option<UserSubject>,
}

Subject matches the originator of a request, as identified by the request authentication system. There are three ways of matching an originator; by user, group, or service account.

Fields

group: Option<GroupSubject>kind: String

Required

service_account: Option<ServiceAccountSubject>user: Option<UserSubject>

Trait Implementations

impl Clone for Subject[src]

impl Debug for Subject[src]

impl Default for Subject[src]

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

impl PartialEq<Subject> for Subject[src]

impl Serialize for Subject[src]

impl StructuralPartialEq for Subject[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.