pub struct BitRange {
    pub offset: u32,
    pub width: u32,
    pub range_type: BitRangeType,
}
Expand description

A bit range, describing the least significant bit and most significant bit

Fields

offset: u32

Value defining the position of the least significant bit of the field within the register

width: u32

Value defining the bit-width of the bitfield within the register

range_type: BitRangeType

The underlying description of the bit range

Implementations

Get the position of the least significant bit

Get the position of the most significant bit

Get the bit range in the format [<msb>:<lsb>]

Construct a BitRange from a offset and width

Construct a BitRange from a msb and lsb

Construct a BitRange from a string in the format [<msb>:<lsb>]

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

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

The resulting type after obtaining ownership.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.