[][src]Struct register::FieldValue

pub struct FieldValue<T, R> where
    R: RegisterLongName,
    T: IntLike
{ pub mask: T, pub value: T, // some fields omitted }

Values for the specific register fields.

Fields

mask: Tvalue: T

Methods

impl<R> FieldValue<u8, R> where
    R: RegisterLongName
[src]

pub const fn new(mask: u8, shift: usize, value: u8) -> FieldValue<u8, R>[src]

pub fn mask(self) -> u8[src]

Get the raw bitmask represented by this FieldValue.

impl<R> FieldValue<u16, R> where
    R: RegisterLongName
[src]

pub const fn new(mask: u16, shift: usize, value: u16) -> FieldValue<u16, R>[src]

impl<R> FieldValue<u32, R> where
    R: RegisterLongName
[src]

pub const fn new(mask: u32, shift: usize, value: u32) -> FieldValue<u32, R>[src]

pub fn mask(self) -> u32[src]

Get the raw bitmask represented by this FieldValue.

impl<R> FieldValue<u64, R> where
    R: RegisterLongName
[src]

pub const fn new(mask: u64, shift: usize, value: u64) -> FieldValue<u64, R>[src]

pub fn mask(self) -> u64[src]

Get the raw bitmask represented by this FieldValue.

impl<T, R> FieldValue<T, R> where
    R: RegisterLongName,
    T: IntLike
[src]

pub fn modify(self, val: T) -> T[src]

Trait Implementations

impl<T, R> Add<FieldValue<T, R>> for FieldValue<T, R> where
    R: RegisterLongName,
    T: IntLike
[src]

type Output = FieldValue<T, R>

The resulting type after applying the + operator.

impl<T, R> AddAssign<FieldValue<T, R>> for FieldValue<T, R> where
    R: RegisterLongName,
    T: IntLike
[src]

impl<T, R> Clone for FieldValue<T, R> where
    R: RegisterLongName + Clone,
    T: IntLike + Clone
[src]

impl<T, R> Copy for FieldValue<T, R> where
    R: RegisterLongName + Copy,
    T: IntLike + Copy
[src]

Auto Trait Implementations

impl<T, R> Send for FieldValue<T, R> where
    R: Send,
    T: Send

impl<T, R> Sync for FieldValue<T, R> where
    R: Sync,
    T: Sync

impl<T, R> Unpin for FieldValue<T, R> where
    R: Unpin,
    T: Unpin

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = !

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.