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