pub enum TransactionResultCode {
txSUCCESS = 0,
txFAILED = -1,
txTOO_EARLY = -2,
txTOO_LATE = -3,
txMISSING_OPERATION = -4,
txBAD_SEQ = -5,
txBAD_AUTH = -6,
txINSUFFICIENT_BALANCE = -7,
txNO_ACCOUNT = -8,
txINSUFFICIENT_FEE = -9,
txBAD_AUTH_EXTRA = -10,
txINTERNAL_ERROR = -11,
}
Variants§
txSUCCESS = 0
txFAILED = -1
txTOO_EARLY = -2
txTOO_LATE = -3
txMISSING_OPERATION = -4
txBAD_SEQ = -5
txBAD_AUTH = -6
txINSUFFICIENT_BALANCE = -7
txNO_ACCOUNT = -8
txINSUFFICIENT_FEE = -9
txBAD_AUTH_EXTRA = -10
txINTERNAL_ERROR = -11
Trait Implementations§
Source§impl Clone for TransactionResultCode
impl Clone for TransactionResultCode
Source§fn clone(&self) -> TransactionResultCode
fn clone(&self) -> TransactionResultCode
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 TransactionResultCode
impl Debug for TransactionResultCode
Source§impl<Out: Write> Pack<Out> for TransactionResultCode
impl<Out: Write> Pack<Out> for TransactionResultCode
Source§impl PartialEq for TransactionResultCode
impl PartialEq for TransactionResultCode
Source§impl<In: Read> Unpack<In> for TransactionResultCode
impl<In: Read> Unpack<In> for TransactionResultCode
impl Copy for TransactionResultCode
impl Eq for TransactionResultCode
impl StructuralPartialEq for TransactionResultCode
Auto Trait Implementations§
impl Freeze for TransactionResultCode
impl RefUnwindSafe for TransactionResultCode
impl Send for TransactionResultCode
impl Sync for TransactionResultCode
impl Unpin for TransactionResultCode
impl UnwindSafe for TransactionResultCode
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