pub struct CoffInfo {
pub file_type: CoffFileType,
pub target_arch: Architecture,
pub section_count: u16,
pub symbol_count: u32,
pub file_size: u64,
pub timestamp: u32,
}Expand description
COFF file info
Provides summary information for COFF-related files.
Fields§
§file_type: CoffFileTypeFile type
target_arch: ArchitectureTarget architecture
section_count: u16Number of sections
symbol_count: u32Number of symbols
file_size: u64File size
timestamp: u32Timestamp
Trait Implementations§
Source§impl<'de> Deserialize<'de> for CoffInfo
impl<'de> Deserialize<'de> for CoffInfo
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 CoffInfo
impl RefUnwindSafe for CoffInfo
impl Send for CoffInfo
impl Sync for CoffInfo
impl Unpin for CoffInfo
impl UnsafeUnpin for CoffInfo
impl UnwindSafe for CoffInfo
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