pub struct ContractQueryReport {
pub cache_hit: bool,
pub skipped_missing_shapes: usize,
pub capped_results: usize,
pub matched_before_limit: usize,
}Expand description
Counters and query facts from the most recent contract-deck query.
Fields§
§cache_hit: boolWhether the deck came from an existing cache entry.
skipped_missing_shapes: usizeCards excluded because a requested shape field was unavailable.
capped_results: usizeNumber of matching cards omitted because of the query limit.
matched_before_limit: usizeNumber of cards that matched before applying the query limit.
Trait Implementations§
Source§impl Clone for ContractQueryReport
impl Clone for ContractQueryReport
Source§fn clone(&self) -> ContractQueryReport
fn clone(&self) -> ContractQueryReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ContractQueryReport
impl Debug for ContractQueryReport
Source§impl Default for ContractQueryReport
impl Default for ContractQueryReport
Source§fn default() -> ContractQueryReport
fn default() -> ContractQueryReport
Returns the “default value” for a type. Read more
impl Eq for ContractQueryReport
Source§impl PartialEq for ContractQueryReport
impl PartialEq for ContractQueryReport
impl StructuralPartialEq for ContractQueryReport
Auto Trait Implementations§
impl Freeze for ContractQueryReport
impl RefUnwindSafe for ContractQueryReport
impl Send for ContractQueryReport
impl Sync for ContractQueryReport
impl Unpin for ContractQueryReport
impl UnsafeUnpin for ContractQueryReport
impl UnwindSafe for ContractQueryReport
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.