#[repr(u8)]
pub enum BlockInfoCode { SetBid = 1, BlockName = 2, SetRecordName = 3, }
Expand description

A BlockInfoCode enumerates the bits that occur in the metadata for a block or record. Of these bits, only SetBid is required. If a name is given to a block or record with BlockName or SetRecordName, debugging tools like llvm-bcanalyzer can be used to introspect the structure of blocks and records in the bitstream file.

Variants§

§

SetBid = 1

Indicates which block ID is being described.

§

BlockName = 2

An optional element that records which bytes of the record are the name of the block.

§

SetRecordName = 3

An optional element that records the record ID number and the bytes for the name of the corresponding record.

Trait Implementations§

source§

impl Clone for BlockInfoCode

source§

fn clone(&self) -> BlockInfoCode

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for BlockInfoCode

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl TryFrom<u8> for BlockInfoCode

§

type Error = TryFromPrimitiveError<BlockInfoCode>

The type returned in the event of a conversion error.
source§

fn try_from(number: u8) -> Result<Self, TryFromPrimitiveError<Self>>

Performs the conversion.
source§

impl TryFromPrimitive for BlockInfoCode

§

type Primitive = u8

§

type Error = TryFromPrimitiveError<BlockInfoCode>

source§

const NAME: &'static str = "BlockInfoCode"

source§

fn try_from_primitive( number: Self::Primitive ) -> Result<Self, TryFromPrimitiveError<Self>>

source§

impl Copy for BlockInfoCode

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.