pub struct ForensicAnalysis {
pub verdict: ForensicVerdict,
pub coefficient_of_variation: f64,
pub linearity_score: Option<f64>,
pub hurst_exponent: Option<f64>,
pub checkpoint_count: usize,
pub chain_duration_secs: u64,
pub explanation: String,
}Fields§
§verdict: ForensicVerdict§coefficient_of_variation: f64§linearity_score: Option<f64>§hurst_exponent: Option<f64>§checkpoint_count: usize§chain_duration_secs: u64§explanation: StringTrait Implementations§
Source§impl Clone for ForensicAnalysis
impl Clone for ForensicAnalysis
Source§fn clone(&self) -> ForensicAnalysis
fn clone(&self) -> ForensicAnalysis
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 ForensicAnalysis
impl Debug for ForensicAnalysis
Source§impl<'de> Deserialize<'de> for ForensicAnalysis
impl<'de> Deserialize<'de> for ForensicAnalysis
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ForensicAnalysis
impl RefUnwindSafe for ForensicAnalysis
impl Send for ForensicAnalysis
impl Sync for ForensicAnalysis
impl Unpin for ForensicAnalysis
impl UnsafeUnpin for ForensicAnalysis
impl UnwindSafe for ForensicAnalysis
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