pub struct ElfAnalysis {
pub usage: FirmwareUsage,
pub sections: Vec<SectionInfo>,
}Expand description
Parsed ELF analysis result containing usage and section breakdown.
Fields§
§usage: FirmwareUsageOverall firmware usage.
sections: Vec<SectionInfo>Per-section breakdown (allocated sections only).
Trait Implementations§
Source§impl Clone for ElfAnalysis
impl Clone for ElfAnalysis
Source§fn clone(&self) -> ElfAnalysis
fn clone(&self) -> ElfAnalysis
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ElfAnalysis
impl Debug for ElfAnalysis
Auto Trait Implementations§
impl Freeze for ElfAnalysis
impl RefUnwindSafe for ElfAnalysis
impl Send for ElfAnalysis
impl Sync for ElfAnalysis
impl Unpin for ElfAnalysis
impl UnsafeUnpin for ElfAnalysis
impl UnwindSafe for ElfAnalysis
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