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: f64Overall entropy score (0.0 - 8.0)
section_entropy: HashMap<String, f64>Section-wise entropy
high_entropy_regions: Vec<EntropyRegion>High entropy regions
packing_indicators: PackingIndicatorsPacking 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 moreSource§impl Debug for EntropyAnalysis
impl Debug for EntropyAnalysis
Source§impl<'de> Deserialize<'de> for EntropyAnalysis
impl<'de> Deserialize<'de> for EntropyAnalysis
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 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