//! Contains effects that pertain to changes in an account signer.
modcreated;modremoved;modupdated;pubuseself::created::Created;pubuseself::removed::Removed;pubuseself::updated::Updated;/// Enum representing all the different kinds of effects that represent
/// changes made to an account signer.
#[derive(Debug, Deserialize, Clone)]pubenumKind{/// An effect representing the creation of a new account signer as a result of an operation
Created(Created),/// An effect representing the removal of an account signer as a result of an operation
Removed(Removed),/// An effect representing updates to an account signer as a result of an operation
Updated(Updated),}