Struct ic_agent::agent::UpdateBuilder[][src]

pub struct UpdateBuilder<'agent> {
    pub effective_canister_id: Principal,
    pub canister_id: Principal,
    pub method_name: String,
    pub arg: Vec<u8>,
    pub ingress_expiry_datetime: Option<u64>,
    // some fields omitted
}
Expand description

An Update Request Builder.

This makes it easier to do update calls without actually passing all arguments or specifying if you want to wait or not.

Fields

effective_canister_id: Principalcanister_id: Principalmethod_name: Stringarg: Vec<u8>ingress_expiry_datetime: Option<u64>

Implementations

impl<'agent> UpdateBuilder<'agent>[src]

pub fn new(
    agent: &'agent Agent,
    canister_id: Principal,
    method_name: String
) -> Self
[src]

pub fn with_effective_canister_id(
    &mut self,
    canister_id: Principal
) -> &mut Self
[src]

pub fn with_arg<A: AsRef<[u8]>>(&mut self, arg: A) -> &mut Self[src]

pub fn expire_at(&mut self, time: SystemTime) -> &mut Self[src]

Takes a SystemTime converts it to a Duration by calling duration_since(UNIX_EPOCH) to learn about where in time this SystemTime lies. The Duration is converted to nanoseconds and stored in ingress_expiry_datetime

pub fn expire_after(&mut self, duration: Duration) -> &mut Self[src]

Takes a Duration (i.e. 30 sec/5 min 30 sec/1 h 30 min, etc.) and adds it to the Duration of the current SystemTime since the UNIX_EPOCH Subtracts a permitted drift from the sum to account for using system time and not block time. Converts the difference to nanoseconds and stores in ingress_expiry_datetime

pub async fn call_and_wait<W: Waiter>(
    &self,
    waiter: W
) -> Result<Vec<u8>, AgentError>
[src]

Make an update call. This will call request_status on the RequestId in a loop and return the response as a byte vector.

pub fn call(&self) -> UpdateCall<'_>

Notable traits for UpdateCall<'_>

impl Future for UpdateCall<'_> type Output = Result<RequestId, AgentError>;
[src]

Make an update call. This will return a RequestId. The RequestId should then be used for request_status (most likely in a loop).

Auto Trait Implementations

impl<'agent> !RefUnwindSafe for UpdateBuilder<'agent>

impl<'agent> Send for UpdateBuilder<'agent>

impl<'agent> Sync for UpdateBuilder<'agent>

impl<'agent> Unpin for UpdateBuilder<'agent>

impl<'agent> !UnwindSafe for UpdateBuilder<'agent>

Blanket Implementations

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

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

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

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

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

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T> Instrument for T[src]

fn instrument(self, span: Span) -> Instrumented<Self>[src]

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

fn in_current_span(self) -> Instrumented<Self>[src]

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

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

pub fn into(self) -> U[src]

Performs the conversion.

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.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

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.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.

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

pub fn vzip(self) -> V