pub struct StrongMapletValidation {
pub chain_length_ok: bool,
pub error_rate_ok: bool,
pub max_chain_length: usize,
pub collision_count: usize,
pub error_rate: f64,
pub prob_exceed_chain: f64,
pub is_valid: bool,
}
Expand description
Result of strong maplet property validation
Fields§
§chain_length_ok: bool
Whether chain length is within bounds
error_rate_ok: bool
Whether error rate is within bounds
max_chain_length: usize
Maximum chain length observed
collision_count: usize
Total number of collisions
error_rate: f64
Current error rate
prob_exceed_chain: f64
Probability of exceeding chain length
is_valid: bool
Overall validation result
Trait Implementations§
Source§impl Clone for StrongMapletValidation
impl Clone for StrongMapletValidation
Source§fn clone(&self) -> StrongMapletValidation
fn clone(&self) -> StrongMapletValidation
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 moreAuto Trait Implementations§
impl Freeze for StrongMapletValidation
impl RefUnwindSafe for StrongMapletValidation
impl Send for StrongMapletValidation
impl Sync for StrongMapletValidation
impl Unpin for StrongMapletValidation
impl UnwindSafe for StrongMapletValidation
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