#[repr(transparent)]
struct InterruptCmdH(u32);
Expand description

Interrupt Command Register 2, R/W

Tuple Fields§

§0: u32

Implementations§

source§

impl InterruptCmdH

source

const fn new() -> Self

Creates a new default initialized bitfield.

source

const DESTINATION_BITS: usize = 8usize

source

const DESTINATION_OFFSET: usize = 24usize

source

const fn with_destination(self, value: u8) -> Self

The meaning of destination depends on the destination mode: For the logical destination mode, destination holds a bit mask made up of the cores that are candidates for receiving the interrupt. In the single-core case, this value is 1, in the multi-core case, the n low-order bits needs to be set (with n being the number of CPU cores). Setting the n low-order bits marks all available cores as candidates for receiving interrupts and thereby balancing the number of interrupts between the cores.

Bits: 24..32

source

const fn destination(&self) -> u8

The meaning of destination depends on the destination mode: For the logical destination mode, destination holds a bit mask made up of the cores that are candidates for receiving the interrupt. In the single-core case, this value is 1, in the multi-core case, the n low-order bits needs to be set (with n being the number of CPU cores). Setting the n low-order bits marks all available cores as candidates for receiving interrupts and thereby balancing the number of interrupts between the cores.

Bits: 24..32

source

fn set_destination(&mut self, value: u8)

The meaning of destination depends on the destination mode: For the logical destination mode, destination holds a bit mask made up of the cores that are candidates for receiving the interrupt. In the single-core case, this value is 1, in the multi-core case, the n low-order bits needs to be set (with n being the number of CPU cores). Setting the n low-order bits marks all available cores as candidates for receiving interrupts and thereby balancing the number of interrupts between the cores.

Bits: 24..32

Trait Implementations§

source§

impl Clone for InterruptCmdH

source§

fn clone(&self) -> InterruptCmdH

Returns a copy of the value. Read more
1.0.0§

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

Performs copy-assignment from source. Read more
source§

impl Debug for InterruptCmdH

source§

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

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

impl Default for InterruptCmdH

source§

fn default() -> Self

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

impl From<InterruptCmdH> for u32

source§

fn from(v: InterruptCmdH) -> u32

Converts to this type from the input type.
source§

impl From<u32> for InterruptCmdH

source§

fn from(v: u32) -> Self

Converts to this type from the input type.
source§

impl IOMem for InterruptCmdH

source§

const OFFSET: usize = 784usize

source§

impl Copy for InterruptCmdH

Auto Trait Implementations§

§

impl RefUnwindSafe for InterruptCmdH

§

impl Send for InterruptCmdH

§

impl Sync for InterruptCmdH

§

impl Unpin for InterruptCmdH

§

impl UnwindSafe for InterruptCmdH

Blanket Implementations§

§

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

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

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

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

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

§

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

Mutably borrows from an owned value. Read more
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

§

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

§

fn into(self) -> U

Calls U::from(self).

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

§

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

§

type Error = Infallible

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

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

Performs the conversion.
§

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.
§

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

Performs the conversion.