#[non_exhaustive]#[repr(u8)]pub enum OperandBundleTagCode {
Tag = 1,
}Expand description
OperandBundle tag 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.
Tag = 1
TAG
[strchr x N]
Trait Implementations§
Source§impl Clone for OperandBundleTagCode
impl Clone for OperandBundleTagCode
Source§fn clone(&self) -> OperandBundleTagCode
fn clone(&self) -> OperandBundleTagCode
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 OperandBundleTagCode
impl Debug for OperandBundleTagCode
Source§impl TryFrom<u8> for OperandBundleTagCode
impl TryFrom<u8> for OperandBundleTagCode
Source§type Error = TryFromPrimitiveError<OperandBundleTagCode>
type Error = TryFromPrimitiveError<OperandBundleTagCode>
The type returned in the event of a conversion error.
Source§impl TryFromPrimitive for OperandBundleTagCode
impl TryFromPrimitive for OperandBundleTagCode
const NAME: &'static str = "OperandBundleTagCode"
type Primitive = u8
type Error = TryFromPrimitiveError<OperandBundleTagCode>
fn try_from_primitive( number: Self::Primitive, ) -> Result<Self, TryFromPrimitiveError<Self>>
impl Copy for OperandBundleTagCode
Auto Trait Implementations§
impl Freeze for OperandBundleTagCode
impl RefUnwindSafe for OperandBundleTagCode
impl Send for OperandBundleTagCode
impl Sync for OperandBundleTagCode
impl Unpin for OperandBundleTagCode
impl UnwindSafe for OperandBundleTagCode
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