pub struct EntropyRegion {
pub start: u64,
pub end: u64,
pub entropy: f64,
pub description: String,
}
Expand description
High entropy region
Fields§
§start: u64
Start offset
end: u64
End offset
entropy: f64
Entropy value
description: String
Possible explanation
Trait Implementations§
Source§impl Clone for EntropyRegion
impl Clone for EntropyRegion
Source§fn clone(&self) -> EntropyRegion
fn clone(&self) -> EntropyRegion
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 moreAuto Trait Implementations§
impl Freeze for EntropyRegion
impl RefUnwindSafe for EntropyRegion
impl Send for EntropyRegion
impl Sync for EntropyRegion
impl Unpin for EntropyRegion
impl UnwindSafe for EntropyRegion
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