pub struct EntropyAnalysis {
pub overall_entropy: f64,
pub section_entropy: HashMap<String, f64>,
pub high_entropy_regions: Vec<EntropyRegion>,
pub packing_indicators: PackingIndicators,
}
Expand description
Entropy analysis results
Fields§
§overall_entropy: f64
Overall entropy score (0.0 - 8.0)
section_entropy: HashMap<String, f64>
Section-wise entropy
high_entropy_regions: Vec<EntropyRegion>
High entropy regions
packing_indicators: PackingIndicators
Packing indicators
Trait Implementations§
Source§impl Clone for EntropyAnalysis
impl Clone for EntropyAnalysis
Source§fn clone(&self) -> EntropyAnalysis
fn clone(&self) -> EntropyAnalysis
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 EntropyAnalysis
impl RefUnwindSafe for EntropyAnalysis
impl Send for EntropyAnalysis
impl Sync for EntropyAnalysis
impl Unpin for EntropyAnalysis
impl UnwindSafe for EntropyAnalysis
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