#[repr(u32)]pub enum AccountSetFlag {
Show 15 variants
AccountTxnID = 5,
AllowTrustLineClawback = 16,
AuthorizedNFTokenMinter = 10,
DefaultRipple = 8,
DepositAuth = 9,
DisableMaster = 4,
DisallowIncomingCheck = 13,
DisallowIncomingNFTokenOffer = 12,
DisallowIncomingPayChan = 14,
DisallowIncomingTrustline = 15,
DisallowXRP = 3,
GlobalFreeze = 7,
NoFreeze = 6,
RequireAuth = 2,
RequireDest = 1,
}
Expand description
AccountSet
flags https://xrpl.org/accountset.html#accountset-flags
Variants§
AccountTxnID = 5
AllowTrustLineClawback = 16
AuthorizedNFTokenMinter = 10
DefaultRipple = 8
DepositAuth = 9
DisableMaster = 4
DisallowIncomingCheck = 13
DisallowIncomingNFTokenOffer = 12
DisallowIncomingPayChan = 14
DisallowIncomingTrustline = 15
DisallowXRP = 3
GlobalFreeze = 7
NoFreeze = 6
RequireAuth = 2
RequireDest = 1
Trait Implementations§
Source§impl Clone for AccountSetFlag
impl Clone for AccountSetFlag
Source§fn clone(&self) -> AccountSetFlag
fn clone(&self) -> AccountSetFlag
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 AccountSetFlag
impl Debug for AccountSetFlag
Source§impl PartialEq for AccountSetFlag
impl PartialEq for AccountSetFlag
impl Copy for AccountSetFlag
impl Eq for AccountSetFlag
impl StructuralPartialEq for AccountSetFlag
Auto Trait Implementations§
impl Freeze for AccountSetFlag
impl RefUnwindSafe for AccountSetFlag
impl Send for AccountSetFlag
impl Sync for AccountSetFlag
impl Unpin for AccountSetFlag
impl UnwindSafe for AccountSetFlag
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