pub struct SourceReport {
pub label: String,
pub size: usize,
pub forensic: Option<SourceAnalysis>,
pub entropy: Option<MinEntropyReport>,
pub chaos: Option<ChaosAnalysis>,
pub trials: Option<TrialAnalysis>,
pub verdicts: VerdictSummary,
}Expand description
Per-source analysis results.
Fields§
§label: String§size: usize§forensic: Option<SourceAnalysis>§entropy: Option<MinEntropyReport>§chaos: Option<ChaosAnalysis>§trials: Option<TrialAnalysis>§verdicts: VerdictSummaryTrait Implementations§
Source§impl Clone for SourceReport
impl Clone for SourceReport
Source§fn clone(&self) -> SourceReport
fn clone(&self) -> SourceReport
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 SourceReport
impl Debug for SourceReport
Auto Trait Implementations§
impl Freeze for SourceReport
impl RefUnwindSafe for SourceReport
impl Send for SourceReport
impl Sync for SourceReport
impl Unpin for SourceReport
impl UnsafeUnpin for SourceReport
impl UnwindSafe for SourceReport
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