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

pub enum Kind {
    Created(Created),
    Removed(Removed),
    Updated(Updated),
    Authorized(Authorized),
    Deauthorized(Deauthorized),
}

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

Variants

An effect representing the creation of a trustline as a result of an operation

An effect representing the removal of a trustline as a result of an operation

An effect representing an updated trustline as a result of an operation

An effect representing a trustline being authorized as a result of an allow trust operation

An effect representing a trustline being deauthorized as a result of an allow trust operation

Trait Implementations

impl Clone for Kind
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Kind
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Kind

impl Sync for Kind