#[non_exhaustive]#[repr(u8)]pub enum SymtabCode {
Blob = 1,
}Expand description
SYMTAB block codes
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
Trait Implementations§
Source§impl Clone for SymtabCode
impl Clone for SymtabCode
Source§fn clone(&self) -> SymtabCode
fn clone(&self) -> SymtabCode
Returns a duplicate 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 SymtabCode
impl Debug for SymtabCode
Source§impl TryFrom<u8> for SymtabCode
impl TryFrom<u8> 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
const NAME: &'static str = "SymtabCode"
type Primitive = u8
type Error = TryFromPrimitiveError<SymtabCode>
fn try_from_primitive( number: Self::Primitive, ) -> Result<Self, TryFromPrimitiveError<Self>>
impl Copy 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