pub struct EntropyEdge<F> {
pub block_index: usize,
pub edge_type: EdgeType,
pub entropy: F,
}Expand description
Represents a detected entropy edge in a sequence of entropy values.
Fields§
§block_index: usizeBlock index where the edge was detected
edge_type: EdgeTypeType of edge (rising or falling)
entropy: FNormalized entropy value (0.0 to 1.0) at this edge
Trait Implementations§
Source§impl<F: Clone> Clone for EntropyEdge<F>
impl<F: Clone> Clone for EntropyEdge<F>
Source§fn clone(&self) -> EntropyEdge<F>
fn clone(&self) -> EntropyEdge<F>
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<F: Debug> Debug for EntropyEdge<F>
impl<F: Debug> Debug for EntropyEdge<F>
Source§impl<F: PartialEq> PartialEq for EntropyEdge<F>
impl<F: PartialEq> PartialEq for EntropyEdge<F>
impl<F: Copy> Copy for EntropyEdge<F>
impl<F> StructuralPartialEq for EntropyEdge<F>
Auto Trait Implementations§
impl<F> Freeze for EntropyEdge<F>where
F: Freeze,
impl<F> RefUnwindSafe for EntropyEdge<F>where
F: RefUnwindSafe,
impl<F> Send for EntropyEdge<F>where
F: Send,
impl<F> Sync for EntropyEdge<F>where
F: Sync,
impl<F> Unpin for EntropyEdge<F>where
F: Unpin,
impl<F> UnwindSafe for EntropyEdge<F>where
F: UnwindSafe,
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