[][src]Struct register::Field

pub struct Field<T, R> where
    T: IntLike,
    R: RegisterLongName
{ pub shift: usize, // some fields omitted }

Specific section of a register.

Fields

shift: usize

Implementations

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

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

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

Check if one or more bits in a field are set

pub fn read_as_enum<E>(self, val: T) -> Option<E> where
    E: TryFromValue<T, EnumType = E>, 
[src]

Read value of the field as an enum member

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

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

pub fn val(&self, value: u8) -> FieldValue<u8, R>[src]

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

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

pub fn val(&self, value: u16) -> FieldValue<u16, R>[src]

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

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

pub fn val(&self, value: u32) -> FieldValue<u32, R>[src]

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

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

pub fn val(&self, value: u64) -> FieldValue<u64, R>[src]

Trait Implementations

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

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

Auto Trait Implementations

impl<T, R> Send for Field<T, R> where
    R: Send,
    T: Send
[src]

impl<T, R> Sync for Field<T, R> where
    R: Sync,
    T: Sync
[src]

impl<T, R> Unpin for Field<T, R> where
    R: Unpin,
    T: Unpin
[src]

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 = Infallible

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.