Struct aptos_operational_tool::rest_client::RestClient
source · [−]pub struct RestClient { /* private fields */ }Expand description
A wrapper around JSON RPC for error handling
Implementations
sourceimpl RestClient
impl RestClient
pub fn new(host: String) -> RestClient
pub async fn submit_transaction(
&self,
transaction: SignedTransaction
) -> Result<TransactionContext, Error>
pub async fn get_resource<T: DeserializeOwned>(
&self,
address: AccountAddress,
resource_type: &str
) -> Result<T, Error>
pub async fn validator_config(
&self,
account: AccountAddress
) -> Result<ValidatorConfig, Error>
sourcepub async fn validator_set(
&self,
account: Option<AccountAddress>
) -> Result<Vec<ValidatorInfo>, Error>
pub async fn validator_set(
&self,
account: Option<AccountAddress>
) -> Result<Vec<ValidatorInfo>, Error>
This method returns all validator infos currently registered in the validator set of the blockchain. If account is specified, only a single validator info is returned: the one that matches the given account.
pub async fn account_resource(
&self,
account: AccountAddress
) -> Result<AccountResource, Error>
pub async fn sequence_number(
&self,
account: AccountAddress
) -> Result<u64, Error>
pub async fn transaction_status(
&self,
account: AccountAddress,
sequence_number: u64
) -> Result<Option<TransactionStatus>, Error>
Auto Trait Implementations
impl !RefUnwindSafe for RestClient
impl Send for RestClient
impl Sync for RestClient
impl Unpin for RestClient
impl !UnwindSafe for RestClient
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
impl<T> Pointable for T
impl<T> Pointable for T
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
fn vzip(self) -> V
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more