pub struct CoherenceResult {
pub max_error: f32,
pub tier: Tier,
pub passed: bool,
}Expand description
Outcome of a coherence check.
Fields§
§max_error: f32Maximum relative error observed across all elements.
tier: TierThe tier at which the block is stored.
passed: boolWhether the observed error is within the configured bound for this tier.
Trait Implementations§
Source§impl Clone for CoherenceResult
impl Clone for CoherenceResult
Source§fn clone(&self) -> CoherenceResult
fn clone(&self) -> CoherenceResult
Returns a duplicate of the value. Read more
1.0.0 · 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 CoherenceResult
impl Debug for CoherenceResult
Source§impl PartialEq for CoherenceResult
impl PartialEq for CoherenceResult
impl StructuralPartialEq for CoherenceResult
Auto Trait Implementations§
impl Freeze for CoherenceResult
impl RefUnwindSafe for CoherenceResult
impl Send for CoherenceResult
impl Sync for CoherenceResult
impl Unpin for CoherenceResult
impl UnsafeUnpin for CoherenceResult
impl UnwindSafe for CoherenceResult
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