pub struct DerivationReport {
pub generator_size: Option<usize>,
pub matches: Vec<DerivationMatch>,
}Expand description
Complete derivation evidence for one strict row.
Fields§
§generator_size: Option<usize>The largest detected generator-cell size, when any derivation is present.
matches: Vec<DerivationMatch>Every detected derivation family in ascending partition-size order.
Trait Implementations§
Source§impl Clone for DerivationReport
impl Clone for DerivationReport
Source§fn clone(&self) -> DerivationReport
fn clone(&self) -> DerivationReport
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 DerivationReport
impl Debug for DerivationReport
Source§impl Default for DerivationReport
impl Default for DerivationReport
Source§fn default() -> DerivationReport
fn default() -> DerivationReport
Returns the “default value” for a type. Read more
impl Eq for DerivationReport
Source§impl PartialEq for DerivationReport
impl PartialEq for DerivationReport
impl StructuralPartialEq for DerivationReport
Auto Trait Implementations§
impl Freeze for DerivationReport
impl RefUnwindSafe for DerivationReport
impl Send for DerivationReport
impl Sync for DerivationReport
impl Unpin for DerivationReport
impl UnsafeUnpin for DerivationReport
impl UnwindSafe for DerivationReport
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