#[non_exhaustive]#[repr(u64)]pub enum SymtabCode {
Blob = 1,
}
Expand description
Codes for each record in SYMTAB_BLOCK
.
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.
Blob = 1
SYMTAB_BLOB: [...data...]
Trait Implementations§
Source§impl Debug for SymtabCode
impl Debug for SymtabCode
Source§impl From<SymtabCode> for u64
impl From<SymtabCode> for u64
Source§fn from(enum_value: SymtabCode) -> Self
fn from(enum_value: SymtabCode) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SymtabCode
impl PartialEq for SymtabCode
Source§impl TryFrom<u64> for SymtabCode
impl TryFrom<u64> for SymtabCode
Source§type Error = TryFromPrimitiveError<SymtabCode>
type Error = TryFromPrimitiveError<SymtabCode>
The type returned in the event of a conversion error.
Source§impl TryFromPrimitive for SymtabCode
impl TryFromPrimitive for SymtabCode
impl StructuralPartialEq for SymtabCode
Auto Trait Implementations§
impl Freeze for SymtabCode
impl RefUnwindSafe for SymtabCode
impl Send for SymtabCode
impl Sync for SymtabCode
impl Unpin for SymtabCode
impl UnwindSafe for SymtabCode
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