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

A Query Request Builder.

This makes it easier to do query calls without actually passing all arguments.

Fields§

§effective_canister_id: Principal

The effective canister ID of the destination.

§canister_id: Principal

The principal ID of the canister being called.

§method_name: String

The name of the canister method being called.

§arg: Vec<u8>

The argument blob to be passed to the method.

§ingress_expiry_datetime: Option<u64>

The Unix timestamp that the request will expire at.

Implementations§

Creates a new query builder with an agent for a particular canister method.

Sets the effective canister ID of the destination.

Sets the argument blob to pass to the canister. For most canisters this should be a Candid-serialized tuple.

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

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

Make a query call. This will return a byte vector.

Sign a query call. This will return a signed::SignedQuery which contains all fields of the query and the signed query in CBOR encoding

Trait Implementations§

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

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

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.
Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more