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
sourceimpl<'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 async fn call(self) -> Result<RequestId, AgentError>
pub async fn call(self) -> Result<RequestId, AgentError>
Calls the forwarded canister call on the wallet canister. Equivalent to .build().call().
sourcepub async fn call_and_wait<W>(self, waiter: W) -> Result<Out, AgentError>where
W: Waiter,
pub async fn call_and_wait<W>(self, waiter: W) -> Result<Out, AgentError>where
W: Waiter,
Calls the forwarded canister call on the wallet canister, and waits for the result. Equivalent to .build().call_and_wait(waiter).
Trait Implementations
sourceimpl<'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,
sourcefn 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
sourcefn call_and_wait<'async_trait, W>(
self,
waiter: W
) -> Pin<Box<dyn Future<Output = Result<Out, AgentError>> + Send + 'async_trait>>where
W: Waiter,
W: 'async_trait,
Self: 'async_trait,
fn call_and_wait<'async_trait, W>(
self,
waiter: W
) -> Pin<Box<dyn Future<Output = Result<Out, AgentError>> + Send + 'async_trait>>where
W: Waiter,
W: 'async_trait,
Self: 'async_trait,
sourcefn and_then<Out2, R, AndThen>(
self,
and_then: AndThen
) -> AndThenAsyncCaller<Out, Out2, Self, R, AndThen>where
Self: Sized + Send,
Out2: for<'de> ArgumentDecoder<'de> + Send,
R: Future<Output = Result<Out2, AgentError>> + Send,
AndThen: Send + Fn(Out) -> R,
fn and_then<Out2, R, AndThen>(
self,
and_then: AndThen
) -> AndThenAsyncCaller<Out, Out2, Self, R, AndThen>where
Self: Sized + Send,
Out2: for<'de> ArgumentDecoder<'de> + Send,
R: Future<Output = Result<Out2, AgentError>> + Send,
AndThen: Send + Fn(Out) -> R,
Apply a transformation function after the call has been successful. The transformation
is applied with the result. Read more
sourcefn map<Out2, Map>(self, map: Map) -> MappedAsyncCaller<Out, Out2, Self, Map>where
Self: Sized + Send,
Out2: for<'de> ArgumentDecoder<'de> + Send,
Map: Send + Fn(Out) -> Out2,
fn map<Out2, Map>(self, map: Map) -> MappedAsyncCaller<Out, Out2, Self, Map>where
Self: Sized + Send,
Out2: for<'de> ArgumentDecoder<'de> + Send,
Map: Send + Fn(Out) -> Out2,
Apply a transformation function after the call has been successful. Equivalent to
.and_then(|x| async { map(x) }).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,
'agent: 'canister,
impl<'agent, 'canister, Out> !UnwindSafe for CallForwarder<'agent, 'canister, Out>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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