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