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
Created(Created)An effect representing the fact that an account was created
Credited(Credited)An effect representing the funds being deposited in an account as a result of an operation
Removed(Removed)An effect representing the fact that an account was removed in a merge account operation
Debited(Debited)An effect representing the funds being removed from an account as a result of an operation
ThresholdsUpdated(ThresholdsUpdated)An effect representing the change of an account threshold as a result of an operation
HomeDomainUpdated(HomeDomainUpdated)An effect representing the change of an account's home domain as a result of an operation
FlagsUpdated(FlagsUpdated)An effect representing the change of an account's flags as a result of an operation
Trait Implementations
impl Debug for Kind[src]
impl Debug for Kindfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Clone for Kind[src]
impl Clone for Kind