Enum www_authenticate::RawChallenge[][src]

pub enum RawChallenge {
    Token68(String),
    Fields(ChallengeFields),
}

A representation of raw challenges. A Challenge is either a token or fields.

Variants

Trait Implementations

impl Debug for RawChallenge
[src]

Formats the value using the given formatter. Read more

impl Clone for RawChallenge
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for RawChallenge
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for RawChallenge
[src]

impl Display for RawChallenge
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations