Skip to main content

BytecodeDumpFlags

Struct BytecodeDumpFlags 

Source
pub struct BytecodeDumpFlags(/* private fields */);
Expand description

Represents a bitfield.

Implementations§

Source§

impl BytecodeDumpFlags

Source

pub const CODE_BITS: u32 = 1u32

The number of bits code occupies in the bitfield.

Source

pub const CODE_OFFSET: u32 = 0u32

The bit offset of code in the bitfield.

Source

pub const LINES_BITS: u32 = 1u32

The number of bits lines occupies in the bitfield.

Source

pub const LINES_OFFSET: u32 = 1u32

The bit offset of lines in the bitfield.

Source

pub const SOURCE_BITS: u32 = 1u32

The number of bits source occupies in the bitfield.

Source

pub const SOURCE_OFFSET: u32 = 2u32

The bit offset of source in the bitfield.

Source

pub const LOCALS_BITS: u32 = 1u32

The number of bits locals occupies in the bitfield.

Source

pub const LOCALS_OFFSET: u32 = 3u32

The bit offset of locals in the bitfield.

Source

pub const REMARKS_BITS: u32 = 1u32

The number of bits remarks occupies in the bitfield.

Source

pub const REMARKS_OFFSET: u32 = 4u32

The bit offset of remarks in the bitfield.

Source

pub const TYPES_BITS: u32 = 1u32

The number of bits types occupies in the bitfield.

Source

pub const TYPES_OFFSET: u32 = 5u32

The bit offset of types in the bitfield.

Source

pub const CONSTANTS_BITS: u32 = 1u32

The number of bits constants occupies in the bitfield.

Source

pub const CONSTANTS_OFFSET: u32 = 6u32

The bit offset of constants in the bitfield.

Source

pub const fn new() -> Self

Creates a new bitfield instance.

Source

pub const fn new_without_defaults() -> Self

Creates a new bitfield instance without respecting default values.

Source

pub const fn from_bits(bits: u32) -> Self

Creates a new bitfield instance from the given bits.

Source

pub const fn from_bits_with_defaults(bits: u32) -> Self

Creates a new bitfield instance from the given bits while respecting defaults.

Source

pub const fn from_le_bits(bits: u32) -> Self

Creates a new bitfield instance from the given little-endian bits.

Source

pub const fn from_le_bits_with_defaults(bits: u32) -> Self

Creates a new bitfield instance from the given little-endian bits while respecting defaults.

Source

pub const fn from_be_bits(bits: u32) -> Self

Creates a new bitfield instance from the given big-endian bits.

Source

pub const fn from_be_bits_with_defaults(bits: u32) -> Self

Creates a new bitfield instance from the given big-endian bits while respecting defaults.

Source

pub const fn into_bits(self) -> u32

Returns the bits of the bitfield.

Source

pub const fn into_le_bits(self) -> u32

Returns the bits of the bitfield in little-endian order.

Source

pub const fn into_be_bits(self) -> u32

Returns the bits of the bitfield in big-endian order.

Source

pub const fn code(&self) -> bool

Returns bit 0.

Source

pub const fn lines(&self) -> bool

Returns bit 1.

Source

pub const fn source(&self) -> bool

Returns bit 2.

Source

pub const fn locals(&self) -> bool

Returns bit 3.

Source

pub const fn remarks(&self) -> bool

Returns bit 4.

Source

pub const fn types(&self) -> bool

Returns bit 5.

Source

pub const fn constants(&self) -> bool

Returns bit 6.

Source

pub const fn set_code(&mut self, bits: bool)

Sets bit 0.

Source

pub const fn checked_set_code(&mut self, bits: bool) -> Result<(), &'static str>

Sets bit 0.

Source

pub const fn set_lines(&mut self, bits: bool)

Sets bit 1.

Source

pub const fn checked_set_lines( &mut self, bits: bool, ) -> Result<(), &'static str>

Sets bit 1.

Source

pub const fn set_source(&mut self, bits: bool)

Sets bit 2.

Source

pub const fn checked_set_source( &mut self, bits: bool, ) -> Result<(), &'static str>

Sets bit 2.

Source

pub const fn set_locals(&mut self, bits: bool)

Sets bit 3.

Source

pub const fn checked_set_locals( &mut self, bits: bool, ) -> Result<(), &'static str>

Sets bit 3.

Source

pub const fn set_remarks(&mut self, bits: bool)

Sets bit 4.

Source

pub const fn checked_set_remarks( &mut self, bits: bool, ) -> Result<(), &'static str>

Sets bit 4.

Source

pub const fn set_types(&mut self, bits: bool)

Sets bit 5.

Source

pub const fn checked_set_types( &mut self, bits: bool, ) -> Result<(), &'static str>

Sets bit 5.

Source

pub const fn set_constants(&mut self, bits: bool)

Sets bit 6.

Source

pub const fn checked_set_constants( &mut self, bits: bool, ) -> Result<(), &'static str>

Sets bit 6.

Source

pub const fn write_bits(&mut self, bits: u32)

Writes bits to the bitfield.

Source

pub const fn write_bits_with_defaults(&mut self, bits: u32)

Writes bits to the bitfield while setting defaults.

Source

pub const fn write_le_bits(&mut self, bits: u32)

Writes little-endian bits to the bitfield.

Source

pub const fn write_le_bits_with_defaults(&mut self, bits: u32)

Writes little-endian bits to the bitfield while setting defaults.

Source

pub const fn write_be_bits(&mut self, bits: u32)

Writes big-endian bits to the bitfield.

Source

pub const fn write_be_bits_with_defaults(&mut self, bits: u32)

Writes big-endian bits to the bitfield while setting defaults.

Source

pub const fn write_defaults(&mut self)

Writes the bitfield defaults.

Source

pub const fn set_bit(&mut self, offset: u32, bit: bool)

Sets a bit in the bitfield.

Source

pub const fn checked_set_bit( &mut self, offset: u32, bit: bool, ) -> Result<(), &'static str>

Sets a bit in the bitfield. Returns an error if the offset is outside the bitfield range.

Source

pub const fn set_bits_range(&mut self, offset: u32, length: u32, value: u32)

Sets bits in the bitfield starting from the offset to the length with the provided value.

Source

pub const fn checked_set_bits_range( &mut self, offset: u32, length: u32, value: u32, ) -> Result<(), &'static str>

Sets bits in the bitfield starting from the offset to the length with the provided value. Returns an error if the offset and length is outside the bitfield range, if the value is too large for the length, or if any bit in the range is non-writable.

Source

pub const fn get_bit(&self, offset: u32) -> bool

Returns a bit from the bitfield.

Source

pub const fn checked_get_bit(&self, offset: u32) -> Result<bool, &'static str>

Returns a bit from the bitfield. Returns an error if the offset is outside the bitfield range.

Source

pub const fn get_bits_range(&self, offset: u32, length: u32) -> u32

Returns bits from the bitfield.

Source

pub const fn checked_get_bits_range( &self, offset: u32, length: u32, ) -> Result<u32, &'static str>

Returns bits from the bitfield starting from the offset to the length. Returns an error if the offset and length is outside the bitfield range or if any bit in the range is non-readable.

Source

pub const fn clear_bits(&mut self)

Clears all bits in the bitfield.

Source

pub const fn clear_bits_with_defaults(&mut self)

Clears all bits in the bitfield and set field defaults.

Source

pub const fn clear_code(&mut self)

Clears bit 0.

Source

pub const fn clear_lines(&mut self)

Clears bit 1.

Source

pub const fn clear_source(&mut self)

Clears bit 2.

Source

pub const fn clear_locals(&mut self)

Clears bit 3.

Source

pub const fn clear_remarks(&mut self)

Clears bit 4.

Source

pub const fn clear_types(&mut self)

Clears bit 5.

Source

pub const fn clear_constants(&mut self)

Clears bit 6.

Source

pub const fn clear_code_to_default(&mut self)

Clears bit 0.

Source

pub const fn clear_lines_to_default(&mut self)

Clears bit 1.

Source

pub const fn clear_source_to_default(&mut self)

Clears bit 2.

Source

pub const fn clear_locals_to_default(&mut self)

Clears bit 3.

Source

pub const fn clear_remarks_to_default(&mut self)

Clears bit 4.

Source

pub const fn clear_types_to_default(&mut self)

Clears bit 5.

Source

pub const fn clear_constants_to_default(&mut self)

Clears bit 6.

Source

pub const fn invert_bits(&mut self)

Inverts all writable bits in the bitfield.

Source

pub const fn invert_code(&mut self)

Inverts bit 0.

Source

pub const fn invert_lines(&mut self)

Inverts bit 1.

Source

pub const fn invert_source(&mut self)

Inverts bit 2.

Source

pub const fn invert_locals(&mut self)

Inverts bit 3.

Source

pub const fn invert_remarks(&mut self)

Inverts bit 4.

Source

pub const fn invert_types(&mut self)

Inverts bit 5.

Source

pub const fn invert_constants(&mut self)

Inverts bit 6.

Source

pub const fn code_inverted(&self) -> bool

Inverts bit 0.

Source

pub const fn lines_inverted(&self) -> bool

Inverts bit 1.

Source

pub const fn source_inverted(&self) -> bool

Inverts bit 2.

Source

pub const fn locals_inverted(&self) -> bool

Inverts bit 3.

Source

pub const fn remarks_inverted(&self) -> bool

Inverts bit 4.

Source

pub const fn types_inverted(&self) -> bool

Inverts bit 5.

Source

pub const fn constants_inverted(&self) -> bool

Inverts bit 6.

Trait Implementations§

Source§

impl Clone for BytecodeDumpFlags

Source§

fn clone(&self) -> BytecodeDumpFlags

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Copy for BytecodeDumpFlags

Source§

impl Debug for BytecodeDumpFlags

Source§

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

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

impl Default for BytecodeDumpFlags

Source§

fn default() -> BytecodeDumpFlags

Returns the “default value” for a type. Read more
Source§

impl Eq for BytecodeDumpFlags

Source§

impl From<BytecodeDumpFlags> for u32

Source§

fn from(val: BytecodeDumpFlags) -> Self

Converts to this type from the input type.
Source§

impl From<u32> for BytecodeDumpFlags

Source§

fn from(bits: u32) -> Self

Converts to this type from the input type.
Source§

impl PartialEq for BytecodeDumpFlags

Source§

fn eq(&self, other: &BytecodeDumpFlags) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for BytecodeDumpFlags

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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,

Source§

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>,

Source§

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>,

Source§

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.