[][src]Enum jlib::message::tx_flags::Flags

pub enum Flags {
    Universal {
        name: Universal,
    },
    AccountSet {
        name: AccountSet,
    },
    TrustSet {
        name: TrustSet,
    },
    OfferCreate {
        name: OfferCreate,
    },
    Payment {
        name: Payment,
    },
    RelationSet {
        name: RelationSet,
    },
    Other,
}

Variants

Universal

Fields of Universal

name: Universal
AccountSet

Fields of AccountSet

name: AccountSet
TrustSet

Fields of TrustSet

name: TrustSet
OfferCreate

Fields of OfferCreate

name: OfferCreate
Payment

Fields of Payment

name: Payment
RelationSet

Fields of RelationSet

name: RelationSet
Other

Implementations

impl Flags[src]

pub fn get(&self) -> u32[src]

Trait Implementations

impl Debug for Flags[src]

impl<'de> Deserialize<'de> for Flags[src]

impl Display for Flags[src]

impl Serialize for Flags[src]

Auto Trait Implementations

impl RefUnwindSafe for Flags

impl Send for Flags

impl Sync for Flags

impl Unpin for Flags

impl UnwindSafe for Flags

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> Downcast for T where
    T: Any

impl<T> DowncastSync for T where
    T: Send + Sync + Any

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.