Enum oauth2::client_type::ClientType [] [src]

pub enum ClientType {
    ConfidentialClient,
    PublicClient,
}

Client Type, either 'confidential' or 'public'.

See RFC 6749 Section 2.2. In particular:

Variants

ConfidentialClient

Client that can confidentially store secrets

PublicClient

Client that is not trusted to confidentially store secrets

Trait Implementations

impl Display for ClientType
[src]

fn fmt(&self, f: &mut Formatter) -> Result

Derived Implementations

impl Debug for ClientType
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

impl Eq for ClientType
[src]

impl PartialEq for ClientType
[src]

fn eq(&self, __arg_0: &ClientType) -> bool

fn ne(&self, other: &Rhs) -> bool
1.0.0

impl Copy for ClientType
[src]

impl Clone for ClientType
[src]

fn clone(&self) -> ClientType

fn clone_from(&mut self, source: &Self)
1.0.0