Struct malwaredb_types::doc::office95::Office95
source · pub struct Office95<'a> {
pub clsid: ClsidType,
pub minor_version: u16,
pub major_version: u16,
pub contents: &'a [u8],
}
Expand description
A struct representing the older Microsoft Office format, Office95, aka Docfile.
This format is really a container format, and could be used to hold a non-Office files, such as installers (.msi files), Windows update files, and others. Here we are only concerned with MS Office types.
Fields§
§clsid: ClsidType
Sub-type for the file
minor_version: u16
Minor version of the format
major_version: u16
Major version of the format, also called DllVersion
contents: &'a [u8]
The array containing the raw bytes used to parse this document
Implementations§
Trait Implementations§
source§impl<'a> DocumentFile for Office95<'a>
impl<'a> DocumentFile for Office95<'a>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for Office95<'a>
impl<'a> Send for Office95<'a>
impl<'a> Sync for Office95<'a>
impl<'a> Unpin for Office95<'a>
impl<'a> UnwindSafe for Office95<'a>
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