Struct soroban_sdk::accounts::Accounts
source · pub struct Accounts(_);
Expand description
Accounts retrieves information about accounts that exist in the current ledger.
Examples
use soroban_sdk::Env;
let account = env.accounts().get(&account_id).expect("account does not exist");
assert_eq!(account.medium_threshold(), 1);
Implementations§
Trait Implementations§
source§impl Accounts for Accounts
Available on crate feature testutils
only.
impl Accounts for Accounts
Available on crate feature
testutils
only.source§fn generate_and_create(&self) -> AccountId
fn generate_and_create(&self) -> AccountId
Generate and account ID and creates an account.
source§fn set_thresholds(&self, id: &AccountId, low: u8, medium: u8, high: u8)
fn set_thresholds(&self, id: &AccountId, low: u8, medium: u8, high: u8)
Set the thresholds of an account.
Auto Trait Implementations§
impl !RefUnwindSafe for Accounts
impl !Send for Accounts
impl !Sync for Accounts
impl Unpin for Accounts
impl !UnwindSafe for Accounts
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.