#[non_exhaustive]#[repr(u8)]pub enum CallMarkersFlags {
Tail = 0,
Cconv = 1,
MustTail = 14,
ExplicitType = 15,
NoTail = 16,
Fmf = 17,
}Expand description
Markers and flags for call instruction.
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.
Trait Implementations§
Source§impl Clone for CallMarkersFlags
impl Clone for CallMarkersFlags
Source§fn clone(&self) -> CallMarkersFlags
fn clone(&self) -> CallMarkersFlags
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 CallMarkersFlags
impl Debug for CallMarkersFlags
Source§impl TryFrom<u8> for CallMarkersFlags
impl TryFrom<u8> for CallMarkersFlags
Source§type Error = TryFromPrimitiveError<CallMarkersFlags>
type Error = TryFromPrimitiveError<CallMarkersFlags>
The type returned in the event of a conversion error.
Source§impl TryFromPrimitive for CallMarkersFlags
impl TryFromPrimitive for CallMarkersFlags
const NAME: &'static str = "CallMarkersFlags"
type Primitive = u8
type Error = TryFromPrimitiveError<CallMarkersFlags>
fn try_from_primitive( number: Self::Primitive, ) -> Result<Self, TryFromPrimitiveError<Self>>
impl Copy for CallMarkersFlags
Auto Trait Implementations§
impl Freeze for CallMarkersFlags
impl RefUnwindSafe for CallMarkersFlags
impl Send for CallMarkersFlags
impl Sync for CallMarkersFlags
impl Unpin for CallMarkersFlags
impl UnwindSafe for CallMarkersFlags
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