[−][src]Struct register::FieldValue
Values for the specific register fields.
Fields
mask: Tvalue: TMethods
impl<R> FieldValue<u8, R> where
R: RegisterLongName, [src]
R: RegisterLongName,
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.
pub fn read(&self, field: Field<u8, R>) -> u8[src]
impl<R> FieldValue<u16, R> where
R: RegisterLongName, [src]
R: RegisterLongName,
pub const fn new(mask: u16, shift: usize, value: u16) -> FieldValue<u16, R>[src]
pub fn mask(self) -> u16[src]
Get the raw bitmask represented by this FieldValue.
pub fn read(&self, field: Field<u16, R>) -> u16[src]
impl<R> FieldValue<u32, R> where
R: RegisterLongName, [src]
R: RegisterLongName,
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.
pub fn read(&self, field: Field<u32, R>) -> u32[src]
impl<R> FieldValue<u64, R> where
R: RegisterLongName, [src]
R: RegisterLongName,
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.
pub fn read(&self, field: Field<u64, R>) -> u64[src]
impl<T, R> FieldValue<T, R> where
R: RegisterLongName,
T: IntLike, [src]
R: RegisterLongName,
T: IntLike,
Trait Implementations
impl<T, R> Add<FieldValue<T, R>> for FieldValue<T, R> where
R: RegisterLongName,
T: IntLike, [src]
R: RegisterLongName,
T: IntLike,
type Output = FieldValue<T, R>
The resulting type after applying the + operator.
fn add(self, rhs: FieldValue<T, R>) -> FieldValue<T, R>[src]
impl<T, R> AddAssign<FieldValue<T, R>> for FieldValue<T, R> where
R: RegisterLongName,
T: IntLike, [src]
R: RegisterLongName,
T: IntLike,
fn add_assign(&mut self, rhs: FieldValue<T, R>)[src]
impl<T, R> Clone for FieldValue<T, R> where
R: RegisterLongName + Clone,
T: IntLike + Clone, [src]
R: RegisterLongName + Clone,
T: IntLike + Clone,
fn clone(&self) -> FieldValue<T, R>[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl<T, R> Copy for FieldValue<T, R> where
R: RegisterLongName + Copy,
T: IntLike + Copy, [src]
R: RegisterLongName + Copy,
T: IntLike + Copy,
Auto Trait Implementations
impl<T, R> Send for FieldValue<T, R> where
R: Send,
T: Send,
R: Send,
T: Send,
impl<T, R> Sync for FieldValue<T, R> where
R: Sync,
T: Sync,
R: Sync,
T: Sync,
impl<T, R> Unpin for FieldValue<T, R> where
R: Unpin,
T: Unpin,
R: Unpin,
T: Unpin,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
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>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,