/// This effect is the result of a create merge operation and represents
/// the fact that an account was removed in the merge
#[derive(Debug, Deserialize, Clone)]pubstructRemoved{account: String,
}implRemoved{/// Creates a new account Removed effect
pubfnnew(account: String)-> Removed{
Removed { account }}/// The public address of the account that was removed
pubfnaccount(&self)->&String{&self.account
}}