Struct ic_utils::interfaces::wallet::CallForwarder
source · pub struct CallForwarder<'agent, 'canister: 'agent, Out>where
Self: 'canister,
Out: for<'de> ArgumentDecoder<'de> + Send + Sync,{ /* private fields */ }Expand description
An interface for forwarding a canister method call through the wallet canister via wallet_canister_call.
Implementations§
source§impl<'agent, 'canister: 'agent, Out> CallForwarder<'agent, 'canister, Out>where
Out: for<'de> ArgumentDecoder<'de> + Send + Sync,
impl<'agent, 'canister: 'agent, Out> CallForwarder<'agent, 'canister, Out>where Out: for<'de> ArgumentDecoder<'de> + Send + Sync,
sourcepub fn with_arg<Argument>(self, arg: Argument) -> Selfwhere
Argument: CandidType + Sync + Send,
pub fn with_arg<Argument>(self, arg: Argument) -> Selfwhere Argument: CandidType + Sync + Send,
Add an argument to the candid argument list. This requires Candid arguments, if
there is a raw argument set (using with_arg_raw), this will fail.
sourcepub fn with_arg_raw(self, arg: Vec<u8>) -> Self
pub fn with_arg_raw(self, arg: Vec<u8>) -> Self
Replace the argument with raw argument bytes. This will overwrite the current argument set, so calling this method twice will discard the first argument.
sourcepub fn build(self) -> Result<impl 'agent + AsyncCall<Out>, AgentError>
pub fn build(self) -> Result<impl 'agent + AsyncCall<Out>, AgentError>
Creates an AsyncCall implementation that, when called, will forward the specified canister call.
sourcepub fn call(
self
) -> impl Future<Output = Result<RequestId, AgentError>> + 'agent
pub fn call( self ) -> impl Future<Output = Result<RequestId, AgentError>> + 'agent
Calls the forwarded canister call on the wallet canister. Equivalent to .build().call().
sourcepub fn call_and_wait(
self
) -> impl Future<Output = Result<Out, AgentError>> + 'agent
pub fn call_and_wait( self ) -> impl Future<Output = Result<Out, AgentError>> + 'agent
Calls the forwarded canister call on the wallet canister, and waits for the result. Equivalent to .build().call_and_wait().
Trait Implementations§
source§impl<'agent, 'canister: 'agent, Out> AsyncCall<Out> for CallForwarder<'agent, 'canister, Out>where
Out: for<'de> ArgumentDecoder<'de> + Send + Sync,
impl<'agent, 'canister: 'agent, Out> AsyncCall<Out> for CallForwarder<'agent, 'canister, Out>where Out: for<'de> ArgumentDecoder<'de> + Send + Sync,
source§fn call<'async_trait>(
self
) -> Pin<Box<dyn Future<Output = Result<RequestId, AgentError>> + Send + 'async_trait>>where
Self: 'async_trait,
fn call<'async_trait>( self ) -> Pin<Box<dyn Future<Output = Result<RequestId, AgentError>> + Send + 'async_trait>>where Self: 'async_trait,
Execute the call, but returns the RequestId. Waiting on the request Id must be
managed by the caller using the Agent directly. Read more
source§fn call_and_wait<'async_trait>(
self
) -> Pin<Box<dyn Future<Output = Result<Out, AgentError>> + Send + 'async_trait>>where
Self: 'async_trait,
fn call_and_wait<'async_trait>( self ) -> Pin<Box<dyn Future<Output = Result<Out, AgentError>> + Send + 'async_trait>>where Self: 'async_trait,
Execute the call, and wait for an answer using an exponential-backoff strategy. The return
type is encoded in the trait.
Auto Trait Implementations§
impl<'agent, 'canister, Out> !RefUnwindSafe for CallForwarder<'agent, 'canister, Out>
impl<'agent, 'canister, Out> !Send for CallForwarder<'agent, 'canister, Out>
impl<'agent, 'canister, Out> !Sync for CallForwarder<'agent, 'canister, Out>
impl<'agent, 'canister, Out> Unpin for CallForwarder<'agent, 'canister, Out>where Out: Unpin,
impl<'agent, 'canister, Out> !UnwindSafe for CallForwarder<'agent, 'canister, Out>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more