Struct stellar_client::resources::effect::trustline::Updated [−][src]
pub struct Updated { /* fields omitted */ }This effect can be the result of a change trust operation and represents the fact that a trustline has been updated between an asset and account
Methods
impl Updated[src]
impl Updatedpub fn new(account: String, limit: Amount, asset: AssetIdentifier) -> Updated[src]
pub fn new(account: String, limit: Amount, asset: AssetIdentifier) -> UpdatedCreates a new Trustline Updated effect
pub fn account(&self) -> &String[src]
pub fn account(&self) -> &StringThe public address of the account that updated its trustline
pub fn limit(&self) -> Amount[src]
pub fn limit(&self) -> AmountThe limit for the trustline
pub fn asset(&self) -> &AssetIdentifier[src]
pub fn asset(&self) -> &AssetIdentifierAsset being trusted.
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