pub enum AccountReply {
Exists,
NotApproved,
Created,
ChangeFailed,
Changed,
RequestDenied,
Unrecognized(i32),
}
Expand description
Reply code sent with ACCOUNT_REPLY packet
Variants§
Trait Implementations§
Source§impl Clone for AccountReply
impl Clone for AccountReply
Source§fn clone(&self) -> AccountReply
fn clone(&self) -> AccountReply
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 AccountReply
impl Debug for AccountReply
Source§impl Default for AccountReply
impl Default for AccountReply
Source§impl From<AccountReply> for i32
impl From<AccountReply> for i32
Source§fn from(value: AccountReply) -> i32
fn from(value: AccountReply) -> i32
Converts to this type from the input type.
Source§impl From<i32> for AccountReply
impl From<i32> for AccountReply
Source§impl PartialEq for AccountReply
impl PartialEq for AccountReply
impl Copy for AccountReply
impl Eq for AccountReply
impl StructuralPartialEq for AccountReply
Auto Trait Implementations§
impl Freeze for AccountReply
impl RefUnwindSafe for AccountReply
impl Send for AccountReply
impl Sync for AccountReply
impl Unpin for AccountReply
impl UnwindSafe for AccountReply
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