Enum object::read::ObjectKind
source · [−]#[non_exhaustive]
pub enum ObjectKind {
Unknown,
Relocatable,
Executable,
Dynamic,
Core,
}
Expand description
An object kind.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Unknown
The object kind is unknown.
Relocatable
Relocatable object.
Executable
Executable.
Dynamic
Dynamic shared object.
Core
Core.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for ObjectKind
impl Send for ObjectKind
impl Sync for ObjectKind
impl Unpin for ObjectKind
impl UnwindSafe for ObjectKind
Blanket Implementations
Mutably borrows from an owned value. Read more