Struct soroban_sdk::accounts::Account
source · pub struct Account(_);
Expand description
Account provides access to information about an accounts thresholds and signers.
In tests accounts can be generated using Accounts
.
Implementations§
source§impl Account
impl Account
pub fn to_id(&self) -> AccountId
sourcepub fn low_threshold(&self) -> u8
pub fn low_threshold(&self) -> u8
Returns the low threshold for the Stellar account.
sourcepub fn medium_threshold(&self) -> u8
pub fn medium_threshold(&self) -> u8
Returns the medium threshold for the Stellar account.
sourcepub fn high_threshold(&self) -> u8
pub fn high_threshold(&self) -> u8
Returns the high threshold for the Stellar account.
sourcepub fn signer_weight(&self, signer: &BytesN<32>) -> u8
pub fn signer_weight(&self, signer: &BytesN<32>) -> u8
Returns the signer weight for the signer for this Stellar account. If
the signer does not exist for the account, returns zero (0
).
Trait Implementations§
source§impl Ord for Account
impl Ord for Account
source§impl PartialEq<Account> for Account
impl PartialEq<Account> for Account
source§impl PartialOrd<Account> for Account
impl PartialOrd<Account> for Account
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Eq for Account
Auto Trait Implementations§
impl !RefUnwindSafe for Account
impl !Send for Account
impl !Sync for Account
impl Unpin for Account
impl !UnwindSafe for Account
Blanket Implementations§
§impl<T, U, V, E, C> Compare<(T, U, V)> for Cwhere
C: Compare<T, Error = E, Error = E, Error = E> + Compare<U> + Compare<V>,
impl<T, U, V, E, C> Compare<(T, U, V)> for Cwhere
C: Compare<T, Error = E, Error = E, Error = E> + Compare<U> + Compare<V>,
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.