pub struct RejectionCounts {
pub missing_chart: usize,
pub missing_start_term: usize,
pub missing_end_term: usize,
pub endpoint_mismatch: usize,
}Expand description
Rejection census for structurally decoded intersection constructions whose solved chart carrier is incomplete or inconsistent.
Fields§
§missing_chart: usizeThe construction’s CHART_s reference did not resolve to a valid chart.
missing_start_term: usizeThe start term-use reference did not resolve.
missing_end_term: usizeThe end term-use reference did not resolve.
endpoint_mismatch: usizeA term-use endpoint lies outside the chart’s chordal-error contract.
Implementations§
Trait Implementations§
Source§impl Clone for RejectionCounts
impl Clone for RejectionCounts
Source§fn clone(&self) -> RejectionCounts
fn clone(&self) -> RejectionCounts
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 moreimpl Copy for RejectionCounts
Source§impl Debug for RejectionCounts
impl Debug for RejectionCounts
Source§impl Default for RejectionCounts
impl Default for RejectionCounts
Source§fn default() -> RejectionCounts
fn default() -> RejectionCounts
Returns the “default value” for a type. Read more
impl Eq for RejectionCounts
Source§impl PartialEq for RejectionCounts
impl PartialEq for RejectionCounts
impl StructuralPartialEq for RejectionCounts
Auto Trait Implementations§
impl Freeze for RejectionCounts
impl RefUnwindSafe for RejectionCounts
impl Send for RejectionCounts
impl Sync for RejectionCounts
impl Unpin for RejectionCounts
impl UnsafeUnpin for RejectionCounts
impl UnwindSafe for RejectionCounts
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