Struct llvm_bitcode::bitstream::AbbreviationId [−][src]
An AbbreviationId is a fixed-width field that occurs at the start of
abbreviated data records and inside block definitions.
Bitstream reserves 4 special abbreviation IDs for its own bookkeeping.
Implementations
impl AbbreviationId[src]
pub const END_BLOCK: Self[src]
Marks the end of the current block.
pub const ENTER_SUB_BLOCK: Self[src]
Marks the beginning of a new block.
pub const DEFINE_ABBREVIATION: Self[src]
Marks the definition of a new abbreviation.
pub const UNABBREVIATED_RECORD: Self[src]
Marks the definition of a new unabbreviated record.
pub const FIRST_APPLICATION_ID: Self[src]
The first application-defined abbreviation ID.
pub fn id(&self) -> u64[src]
Trait Implementations
impl Clone for AbbreviationId[src]
fn clone(&self) -> AbbreviationId[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Copy for AbbreviationId[src]
impl Debug for AbbreviationId[src]
impl Eq for AbbreviationId[src]
impl Ord for AbbreviationId[src]
fn cmp(&self, other: &AbbreviationId) -> Ordering[src]
#[must_use]pub fn max(self, other: Self) -> Self1.21.0[src]
#[must_use]pub fn min(self, other: Self) -> Self1.21.0[src]
#[must_use]pub fn clamp(self, min: Self, max: Self) -> Self1.50.0[src]
impl PartialEq<AbbreviationId> for AbbreviationId[src]
fn eq(&self, other: &AbbreviationId) -> bool[src]
fn ne(&self, other: &AbbreviationId) -> bool[src]
impl PartialOrd<AbbreviationId> for AbbreviationId[src]
fn partial_cmp(&self, other: &AbbreviationId) -> Option<Ordering>[src]
#[must_use]pub fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]pub fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]pub fn gt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]pub fn ge(&self, other: &Rhs) -> bool1.0.0[src]
impl StructuralEq for AbbreviationId[src]
impl StructuralPartialEq for AbbreviationId[src]
Auto Trait Implementations
impl RefUnwindSafe for AbbreviationId[src]
impl Send for AbbreviationId[src]
impl Sync for AbbreviationId[src]
impl Unpin for AbbreviationId[src]
impl UnwindSafe for AbbreviationId[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,