#[repr(u64)]pub enum ReservedBlockId {
BlockInfo = 0,
Reserved1 = 1,
Reserved2 = 2,
Reserved3 = 3,
Reserved4 = 4,
Reserved5 = 5,
Reserved6 = 6,
Reserved7 = 7,
}
Expand description
Block IDs that are reserved by LLVM.
Variants§
BlockInfo = 0
The BLOCKINFO
block ID.
Reserved1 = 1
Reserved; no semantics.
Reserved2 = 2
Reserved; no semantics.
Reserved3 = 3
Reserved; no semantics.
Reserved4 = 4
Reserved; no semantics.
Reserved5 = 5
Reserved; no semantics.
Reserved6 = 6
Reserved; no semantics.
Reserved7 = 7
Reserved; no semantics.
Trait Implementations§
Source§impl Clone for ReservedBlockId
impl Clone for ReservedBlockId
Source§fn clone(&self) -> ReservedBlockId
fn clone(&self) -> ReservedBlockId
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 ReservedBlockId
impl Debug for ReservedBlockId
Source§impl Hash for ReservedBlockId
impl Hash for ReservedBlockId
Source§impl PartialEq for ReservedBlockId
impl PartialEq for ReservedBlockId
Source§impl TryFrom<u64> for ReservedBlockId
impl TryFrom<u64> for ReservedBlockId
Source§type Error = TryFromPrimitiveError<ReservedBlockId>
type Error = TryFromPrimitiveError<ReservedBlockId>
The type returned in the event of a conversion error.
Source§impl TryFromPrimitive for ReservedBlockId
impl TryFromPrimitive for ReservedBlockId
impl Copy for ReservedBlockId
impl Eq for ReservedBlockId
impl StructuralPartialEq for ReservedBlockId
Auto Trait Implementations§
impl Freeze for ReservedBlockId
impl RefUnwindSafe for ReservedBlockId
impl Send for ReservedBlockId
impl Sync for ReservedBlockId
impl Unpin for ReservedBlockId
impl UnwindSafe for ReservedBlockId
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