pub enum AccountCreation {
ACCOUNT_CREATION_ALWAYS_PROMPT = 1,
ACCOUNT_CREATION_ALWAYS_CREATE = 3,
}
Variants§
Trait Implementations§
source§impl Clone for AccountCreation
impl Clone for AccountCreation
source§fn clone(&self) -> AccountCreation
fn clone(&self) -> AccountCreation
Returns a copy 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 AccountCreation
impl Debug for AccountCreation
source§impl Default for AccountCreation
impl Default for AccountCreation
source§impl Enum for AccountCreation
impl Enum for AccountCreation
source§fn from_i32(value: i32) -> Option<AccountCreation>
fn from_i32(value: i32) -> Option<AccountCreation>
Try to create an enum from
i32
value.
Return None
if value is unknown.source§fn from_str(str: &str) -> Option<AccountCreation>
fn from_str(str: &str) -> Option<AccountCreation>
Try to create an enum from
&str
value.
Return None
if str is unknown.source§const VALUES: &'static [AccountCreation] = _
const VALUES: &'static [AccountCreation] = _
All enum values for enum type.
source§impl EnumFull for AccountCreation
impl EnumFull for AccountCreation
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.
source§impl Hash for AccountCreation
impl Hash for AccountCreation
source§impl PartialEq for AccountCreation
impl PartialEq for AccountCreation
source§fn eq(&self, other: &AccountCreation) -> bool
fn eq(&self, other: &AccountCreation) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for AccountCreation
impl Eq for AccountCreation
impl StructuralEq for AccountCreation
impl StructuralPartialEq for AccountCreation
Auto Trait Implementations§
impl RefUnwindSafe for AccountCreation
impl Send for AccountCreation
impl Sync for AccountCreation
impl Unpin for AccountCreation
impl UnwindSafe for AccountCreation
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