pub enum RawChallenge {
Token68(String),
Fields(ChallengeFields),
}
Expand description
A representation of raw challenges. A Challenge is either a token or fields.
Variants§
Token68(String)
Fields(ChallengeFields)
Trait Implementations§
Source§impl Clone for RawChallenge
impl Clone for RawChallenge
Source§fn clone(&self) -> RawChallenge
fn clone(&self) -> RawChallenge
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for RawChallenge
impl Debug for RawChallenge
Source§impl Display for RawChallenge
impl Display for RawChallenge
Source§impl PartialEq for RawChallenge
impl PartialEq for RawChallenge
impl Eq for RawChallenge
impl StructuralPartialEq for RawChallenge
Auto Trait Implementations§
impl Freeze for RawChallenge
impl RefUnwindSafe for RawChallenge
impl Send for RawChallenge
impl Sync for RawChallenge
impl Unpin for RawChallenge
impl UnwindSafe for RawChallenge
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more