Struct stellar_client::resources::effect::account::ThresholdsUpdated [−][src]
pub struct ThresholdsUpdated { /* fields omitted */ }This effect can be the result of a set options operation and represents the fact that an account's weight thresholds have changed.
Methods
impl ThresholdsUpdated[src]
impl ThresholdsUpdatedpub fn new(account: String, low: u32, med: u32, high: u32) -> ThresholdsUpdated[src]
pub fn new(account: String, low: u32, med: u32, high: u32) -> ThresholdsUpdatedCreates a new ThresholdsUpdated effect
pub fn account(&self) -> &String[src]
pub fn account(&self) -> &StringThe public address of the account that had its thresholds updated.
pub fn low(&self) -> u32[src]
pub fn low(&self) -> u32The sum weight for the low threshold.
pub fn med(&self) -> u32[src]
pub fn med(&self) -> u32The sum weight for the medium threshold.
pub fn high(&self) -> u32[src]
pub fn high(&self) -> u32The sum weight for the high threshold.
Trait Implementations
impl Debug for ThresholdsUpdated[src]
impl Debug for ThresholdsUpdatedfn 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 ThresholdsUpdated[src]
impl Clone for ThresholdsUpdatedfn clone(&self) -> ThresholdsUpdated[src]
fn clone(&self) -> ThresholdsUpdatedReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
Auto Trait Implementations
impl Send for ThresholdsUpdated
impl Send for ThresholdsUpdatedimpl Sync for ThresholdsUpdated
impl Sync for ThresholdsUpdated