Struct assemblyline_models::datastore::tagging::FileELF
source · pub struct FileELF {
pub libraries: Option<Vec<String>>,
pub interpreter: Option<Vec<String>>,
pub sections: Option<FileELFSections>,
pub segments: Option<FileELFSegments>,
pub notes: Option<FileELFNotes>,
}
Expand description
ELF File Tag Model
Fields§
§libraries: Option<Vec<String>>
Libraries
interpreter: Option<Vec<String>>
Interpreter
sections: Option<FileELFSections>
ELF Sections
segments: Option<FileELFSegments>
ELF Segments
notes: Option<FileELFNotes>
ELF Notes
Trait Implementations§
source§impl Described<ElasticMeta> for FileELF
impl Described<ElasticMeta> for FileELF
source§fn metadata() -> Descriptor<ElasticMeta>
fn metadata() -> Descriptor<ElasticMeta>
Get self description of this type
source§impl<'de> Deserialize<'de> for FileELF
impl<'de> Deserialize<'de> for FileELF
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 RefUnwindSafe for FileELF
impl Send for FileELF
impl Sync for FileELF
impl Unpin for FileELF
impl UnwindSafe for FileELF
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