Struct ic_agent::agent::QueryBuilder [−][src]
A Query Request Builder.
This makes it easier to do query calls without actually passing all arguments.
Implementations
impl<'agent> QueryBuilder<'agent>[src]
pub fn new(
agent: &'agent Agent,
canister_id: Principal,
method_name: String
) -> Self[src]
agent: &'agent Agent,
canister_id: Principal,
method_name: String
) -> Self
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(&self) -> Result<Vec<u8>, AgentError>[src]
Make a query call. This will return a byte vector.
Auto Trait Implementations
impl<'agent> !RefUnwindSafe for QueryBuilder<'agent>
impl<'agent> Send for QueryBuilder<'agent>
impl<'agent> Sync for QueryBuilder<'agent>
impl<'agent> Unpin for QueryBuilder<'agent>
impl<'agent> !UnwindSafe for QueryBuilder<'agent>
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T> Instrument for T[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>[src]
pub fn in_current_span(self) -> Instrumented<Self>[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
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]
U: Into<T>,
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]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
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]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,