Struct ic_utils::canister::SyncCallBuilder[][src]

pub struct SyncCallBuilder<'agent, 'canister: 'agent, T> { /* fields omitted */ }

A builder for a synchronous call (ie. query) to the Internet Computer.

See SyncCaller for a description of this structure once built.

Implementations

impl<'agent, 'canister: 'agent, Interface> SyncCallBuilder<'agent, 'canister, Interface>[src]

pub fn with_arg<Argument>(
    self,
    arg: Argument
) -> SyncCallBuilder<'agent, 'canister, Interface> where
    Argument: CandidType + Sync + Send
[src]

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.

pub fn with_value_arg(
    self,
    arg: IDLValue
) -> SyncCallBuilder<'agent, 'canister, Interface>
[src]

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. TODO: make this method unnecessary https://github.com/dfinity/agent-rs/issues/132

pub fn with_arg_raw(
    self,
    arg: Vec<u8>
) -> SyncCallBuilder<'agent, 'canister, Interface>
[src]

Replace the argument with raw argument bytes. This will overwrite the current argument set, so calling this method twice will discard the first argument.

pub fn with_effective_canister_id(
    self,
    canister_id: Principal
) -> SyncCallBuilder<'agent, 'canister, Interface>
[src]

pub fn build<Output>(self) -> SyncCaller<'canister, Output> where
    Output: for<'de> ArgumentDecoder<'de> + Send + Sync
[src]

Builds an SyncCaller from this builder’s state.

Auto Trait Implementations

impl<'agent, 'canister, T> !RefUnwindSafe for SyncCallBuilder<'agent, 'canister, T>

impl<'agent, 'canister, T> Send for SyncCallBuilder<'agent, 'canister, T> where
    T: Sync

impl<'agent, 'canister, T> Sync for SyncCallBuilder<'agent, 'canister, T> where
    T: Sync

impl<'agent, 'canister, T> Unpin for SyncCallBuilder<'agent, 'canister, T> where
    'agent: 'canister, 

impl<'agent, 'canister, T> !UnwindSafe for SyncCallBuilder<'agent, 'canister, T>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,