Enum stellar_client::resources::effect::account::Kind[][src]

pub enum Kind {
    Created(Created),
    Credited(Credited),
    Removed(Removed),
    Debited(Debited),
    ThresholdsUpdated(ThresholdsUpdated),
    HomeDomainUpdated(HomeDomainUpdated),
    FlagsUpdated(FlagsUpdated),
}

Enum representing all the different kinds of effects that represent changes made to an account.

Variants

An effect representing the fact that an account was created

An effect representing the funds being deposited in an account as a result of an operation

An effect representing the fact that an account was removed in a merge account operation

An effect representing the funds being removed from an account as a result of an operation

An effect representing the change of an account threshold as a result of an operation

An effect representing the change of an account's home domain as a result of an operation

An effect representing the change of an account's flags as a result of an operation

Trait Implementations

impl Debug for Kind
[src]

Formats the value using the given formatter. Read more

impl Clone for Kind
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for Kind

impl Sync for Kind