Struct stellar_client::resources::effect::signer::Removed [−][src]
pub struct Removed { /* fields omitted */ }This effect can be the result of a set options operation and represents the fact that a new signer has been removed from an account.
Methods
impl Removed[src]
impl Removedpub fn new(account: String, public_key: String, weight: u8) -> Removed[src]
pub fn new(account: String, public_key: String, weight: u8) -> RemovedRemoves a Signer
pub fn account(&self) -> &String[src]
pub fn account(&self) -> &StringThe public address of the account that lost a new signer
pub fn public_key(&self) -> &String[src]
pub fn public_key(&self) -> &StringThe public key of the old signer
pub fn weight(&self) -> u8[src]
pub fn weight(&self) -> u8The new weight of the signer. Should be 0
Trait Implementations
impl Debug for Removed[src]
impl Debug for Removedfn 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 Removed[src]
impl Clone for Removed