Enum malwaredb_types::exec::ExecutableType
source · pub enum ExecutableType {
Core,
Library,
Program,
Unknown(u16),
}
Variants§
Core
Core file, from a crash
Library
Shared library
Program
Directly executable program or application
Unknown(u16)
Something else?
Trait Implementations§
source§impl Clone for ExecutableType
impl Clone for ExecutableType
source§fn clone(&self) -> ExecutableType
fn clone(&self) -> ExecutableType
Returns a copy 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 ExecutableType
impl Debug for ExecutableType
source§impl Display for ExecutableType
impl Display for ExecutableType
source§impl PartialEq for ExecutableType
impl PartialEq for ExecutableType
source§fn eq(&self, other: &ExecutableType) -> bool
fn eq(&self, other: &ExecutableType) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for ExecutableType
impl Eq for ExecutableType
impl StructuralEq for ExecutableType
impl StructuralPartialEq for ExecutableType
Auto Trait Implementations§
impl RefUnwindSafe for ExecutableType
impl Send for ExecutableType
impl Sync for ExecutableType
impl Unpin for ExecutableType
impl UnwindSafe for ExecutableType
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
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.