Struct stellar_client::resources::Account[][src]

pub struct Account { /* fields omitted */ }

In the Stellar network, users interact using accounts which can be controlled by a corresponding keypair that can authorize transactions.

https://www.stellar.org/developers/horizon/reference/resources/account.html

Methods

impl Account
[src]

The canonical id of this account, suitable for use as the :id parameter for url templates that require an account’s ID. Returns a slice that lives as long as the account does.

The account’s public key encoded into a base32 string representation. Returns a slice that lives as long as the account does.

The canonical id of this account, suitable for use as the :id parameter for url templates that require an account’s ID.

The account’s public key encoded into a base32 string representation.

The current sequence number that can be used when submitting a transaction from this account.

The number of account subentries. This number is multiplied by 0.5 to determine the minimum required balance.

A key/value store of data attached to this account.

Trait Implementations

impl Debug for Account
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Account

impl Sync for Account