Enum lumi::TxnFlag[][src]

pub enum TxnFlag {
    Pending,
    Posted,
    Pad,
    Balance,
}

The flag of a Transaction.

Variants

Pending

transactions flagged by ?.

Posted

transactions flagged by txn or *.

Pad

pad directives.

Balance

balance directives.

Trait Implementations

impl Clone for TxnFlag[src]

impl Copy for TxnFlag[src]

impl Debug for TxnFlag[src]

impl Display for TxnFlag[src]

impl Eq for TxnFlag[src]

impl Hash for TxnFlag[src]

impl Ord for TxnFlag[src]

impl PartialEq<TxnFlag> for TxnFlag[src]

impl PartialOrd<TxnFlag> for TxnFlag[src]

impl StructuralEq for TxnFlag[src]

impl StructuralPartialEq for TxnFlag[src]

Auto Trait Implementations

impl RefUnwindSafe for TxnFlag

impl Send for TxnFlag

impl Sync for TxnFlag

impl Unpin for TxnFlag

impl UnwindSafe for TxnFlag

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.