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

pub struct GroupSubject {
    pub name: String,
}

GroupSubject holds detailed information for group-kind subject.

Fields

name: String

name is the user group that matches, or "*" to match all user groups. See https://github.com/kubernetes/apiserver/blob/master/pkg/authentication/user/user.go for some well-known group names. Required.

Trait Implementations

impl Clone for GroupSubject[src]

impl Debug for GroupSubject[src]

impl Default for GroupSubject[src]

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

impl PartialEq<GroupSubject> for GroupSubject[src]

impl Serialize for GroupSubject[src]

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