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
Created(Created)An effect representing the creation of a trustline as a result of an operation
Removed(Removed)An effect representing the removal of a trustline as a result of an operation
Updated(Updated)An effect representing an updated trustline as a result of an operation
Authorized(Authorized)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]
impl Clone for Kindfn clone(&self) -> Kind[src]
fn clone(&self) -> KindReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl Debug for Kind[src]
impl Debug for Kind