pub enum ForensicVerdict {
V1VerifiedHuman,
V2LikelyHuman,
V3Suspicious,
V4LikelySynthetic,
V5ConfirmedForgery,
}Variants§
V1VerifiedHuman
High entropy, valid causality, non-linear composition.
V2LikelyHuman
Valid timing with minor causality drift (e.g., clock skew).
V3Suspicious
Low entropy or high linearity — potential transcription.
V4LikelySynthetic
Perfect timing uniformity — histogram attack or bot.
V5ConfirmedForgery
HMAC causality lock broken — confirmed tampering.
Implementations§
Trait Implementations§
Source§impl Clone for ForensicVerdict
impl Clone for ForensicVerdict
Source§fn clone(&self) -> ForensicVerdict
fn clone(&self) -> ForensicVerdict
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 ForensicVerdict
impl Debug for ForensicVerdict
Source§impl<'de> Deserialize<'de> for ForensicVerdict
impl<'de> Deserialize<'de> for ForensicVerdict
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
Source§impl PartialEq for ForensicVerdict
impl PartialEq for ForensicVerdict
Source§impl Serialize for ForensicVerdict
impl Serialize for ForensicVerdict
impl Copy for ForensicVerdict
impl Eq for ForensicVerdict
impl StructuralPartialEq for ForensicVerdict
Auto Trait Implementations§
impl Freeze for ForensicVerdict
impl RefUnwindSafe for ForensicVerdict
impl Send for ForensicVerdict
impl Sync for ForensicVerdict
impl Unpin for ForensicVerdict
impl UnsafeUnpin for ForensicVerdict
impl UnwindSafe for ForensicVerdict
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