Struct stellar_client::resources::effect::trustline::Created [−][src]
pub struct Created { /* fields omitted */ }This effect can be the result of a change trust operation and represents the fact that a new trustline has been created between an asset and account
Methods
impl Created[src]
impl Createdpub fn new(account: String, limit: Amount, asset: AssetIdentifier) -> Created[src]
pub fn new(account: String, limit: Amount, asset: AssetIdentifier) -> CreatedCreates a new Trustline Created effect
pub fn account(&self) -> &String[src]
pub fn account(&self) -> &StringThe public address of the account that is creating a new 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 Created[src]
impl Debug for Createdfn 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 Created[src]
impl Clone for Created