pub struct CertaintyReasonEvidenceV0 {
pub status: &'static str,
pub expression_count: usize,
pub exact_count: usize,
pub inferred_count: usize,
pub possible_count: usize,
pub missing_reason_count: usize,
pub reason_counts: BTreeMap<String, usize>,
pub shape_kind_counts: BTreeMap<String, usize>,
pub shape_label_counts: BTreeMap<String, usize>,
}Fields§
§status: &'static str§expression_count: usize§exact_count: usize§inferred_count: usize§possible_count: usize§missing_reason_count: usize§reason_counts: BTreeMap<String, usize>§shape_kind_counts: BTreeMap<String, usize>§shape_label_counts: BTreeMap<String, usize>Trait Implementations§
Source§impl Clone for CertaintyReasonEvidenceV0
impl Clone for CertaintyReasonEvidenceV0
Source§fn clone(&self) -> CertaintyReasonEvidenceV0
fn clone(&self) -> CertaintyReasonEvidenceV0
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 CertaintyReasonEvidenceV0
impl Debug for CertaintyReasonEvidenceV0
impl Eq for CertaintyReasonEvidenceV0
Source§impl PartialEq for CertaintyReasonEvidenceV0
impl PartialEq for CertaintyReasonEvidenceV0
Source§fn eq(&self, other: &CertaintyReasonEvidenceV0) -> bool
fn eq(&self, other: &CertaintyReasonEvidenceV0) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CertaintyReasonEvidenceV0
Auto Trait Implementations§
impl Freeze for CertaintyReasonEvidenceV0
impl RefUnwindSafe for CertaintyReasonEvidenceV0
impl Send for CertaintyReasonEvidenceV0
impl Sync for CertaintyReasonEvidenceV0
impl Unpin for CertaintyReasonEvidenceV0
impl UnsafeUnpin for CertaintyReasonEvidenceV0
impl UnwindSafe for CertaintyReasonEvidenceV0
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
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§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.