[][src]Struct tock_registers::registers::Field

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

Specific section of a register.

Fields

mask: Tshift: usize

Methods

impl<R: RegisterLongName> Field<u8, R>[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: RegisterLongName> Field<u16, R>[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: RegisterLongName> Field<u32, R>[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: RegisterLongName> Field<u64, R>[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: Clone + IntLike, R: Clone + RegisterLongName> Clone for Field<T, R>[src]

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

Auto Trait Implementations

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

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

impl<T, R> Unpin for Field<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 = 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.