Struct stellar_client::resources::effect::account::Created [−][src]
pub struct Created { /* fields omitted */ }This effect is the result of a create account operation and represents the fact that an account was created
Methods
impl Created[src]
impl Createdpub fn new(account: String, starting_balance: Amount) -> Created[src]
pub fn new(account: String, starting_balance: Amount) -> CreatedCreates a new Account
pub fn account(&self) -> &String[src]
pub fn account(&self) -> &StringThe public address of a new account that was funded.
pub fn starting_balance(&self) -> Amount[src]
pub fn starting_balance(&self) -> AmountAmount the account was funded.
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