Enum stellar_client::resources::effect::EffectKind[][src]

pub enum EffectKind {
    Account(Kind),
    Signer(Kind),
    Trustline(Kind),
    Trade(Kind),
    Data(Kind),
}

Each effect type is representing by a kind and captures data specific to that type within it's newtype.

Variants

A collection of effects that represent updates to an account

A collection of effects that represent updates to an account signer

A collection of effects that represent updates to a trustline

An effect representing a trade being executed

An effect representing data being managed.

Trait Implementations

impl Debug for EffectKind
[src]

Formats the value using the given formatter. Read more

impl Clone for EffectKind
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for EffectKind

impl Sync for EffectKind