[][src]Struct pachyderm::auth::IdProvider

pub struct IdProvider {
    pub name: String,
    pub description: String,
    pub saml: Option<SamlOptions>,
    pub oidc: Option<OidcOptions>,
    pub github: Option<GitHubOptions>,
}

IDProvider configures a single ID provider that can authenticate Pachyderm users

Fields

name: String

Name identifies this authentication backend in Pachyderm.

description: String

Description is a human-readable description of this authentication backend. It's ignored by Pachyderm, but exists for the benefit of users configuring Pachyderm's auth system.

saml: Option<SamlOptions>oidc: Option<OidcOptions>github: Option<GitHubOptions>

Trait Implementations

impl Clone for IdProvider[src]

impl Debug for IdProvider[src]

impl Default for IdProvider[src]

impl Message for IdProvider[src]

impl PartialEq<IdProvider> for IdProvider[src]

impl StructuralPartialEq for IdProvider[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> From<T> for T[src]

impl<T> Instrument for T[src]

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

impl<T> IntoRequest<T> for 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]