pub enum ClientTokenRequestType {
REQUEST_UNKNOWN = 0,
REQUEST_CLIENT_DATA_REQUEST = 1,
REQUEST_CHALLENGE_ANSWERS_REQUEST = 2,
}Variants§
Trait Implementations§
Source§impl Clone for ClientTokenRequestType
impl Clone for ClientTokenRequestType
Source§fn clone(&self) -> ClientTokenRequestType
fn clone(&self) -> ClientTokenRequestType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ClientTokenRequestType
Source§impl Debug for ClientTokenRequestType
impl Debug for ClientTokenRequestType
Source§impl Default for ClientTokenRequestType
impl Default for ClientTokenRequestType
Source§impl Enum for ClientTokenRequestType
impl Enum for ClientTokenRequestType
Source§const NAME: &'static str = "ClientTokenRequestType"
const NAME: &'static str = "ClientTokenRequestType"
Enum name as specified in
.proto file. Read moreSource§const VALUES: &'static [ClientTokenRequestType]
const VALUES: &'static [ClientTokenRequestType]
All enum values for enum type.
Source§impl EnumFull for ClientTokenRequestType
impl EnumFull for ClientTokenRequestType
Source§fn enum_descriptor() -> EnumDescriptor
fn enum_descriptor() -> EnumDescriptor
Get enum descriptor by type.
Source§fn descriptor(&self) -> EnumValueDescriptor
fn descriptor(&self) -> EnumValueDescriptor
Get enum value descriptor.
impl Eq for ClientTokenRequestType
Source§impl Hash for ClientTokenRequestType
impl Hash for ClientTokenRequestType
Source§impl PartialEq for ClientTokenRequestType
impl PartialEq for ClientTokenRequestType
Source§fn eq(&self, other: &ClientTokenRequestType) -> bool
fn eq(&self, other: &ClientTokenRequestType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ClientTokenRequestType
Auto Trait Implementations§
impl Freeze for ClientTokenRequestType
impl RefUnwindSafe for ClientTokenRequestType
impl Send for ClientTokenRequestType
impl Sync for ClientTokenRequestType
impl Unpin for ClientTokenRequestType
impl UnsafeUnpin for ClientTokenRequestType
impl UnwindSafe for ClientTokenRequestType
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