#[repr(u32)]pub enum TxnType {
Show 24 variants
Payment = 0,
EscrowCreate = 1,
EscrowFinish = 2,
AccountSet = 3,
EscrowCancel = 4,
RegularKeySet = 5,
OfferCreate = 7,
OfferCancel = 8,
TicketCreate = 10,
TicketCancel = 11,
SignerListSet = 12,
PaychanCreate = 13,
PaychanFund = 14,
PaychanClaim = 15,
CheckCreate = 16,
CheckCash = 17,
CheckCancel = 18,
DepositPreauth = 19,
TrustSet = 20,
AccountDelete = 21,
HookSet = 22,
Amendment = 100,
Fee = 101,
UnlModify = 102,
}
Expand description
Transaction type
Variants§
Payment = 0
EscrowCreate = 1
EscrowFinish = 2
AccountSet = 3
EscrowCancel = 4
RegularKeySet = 5
OfferCreate = 7
OfferCancel = 8
TicketCreate = 10
TicketCancel = 11
SignerListSet = 12
PaychanCreate = 13
PaychanFund = 14
PaychanClaim = 15
CheckCreate = 16
CheckCash = 17
CheckCancel = 18
DepositPreauth = 19
TrustSet = 20
AccountDelete = 21
HookSet = 22
Amendment = 100
Fee = 101
UnlModify = 102
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TxnType
impl RefUnwindSafe for TxnType
impl Send for TxnType
impl Sync for TxnType
impl Unpin for TxnType
impl UnwindSafe for TxnType
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