[][src]Struct register::InMemoryRegister

#[repr(transparent)]pub struct InMemoryRegister<T, R = ()> where
    T: IntLike,
    R: RegisterLongName
{ /* fields omitted */ }

In memory volatile register.

Implementations

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

pub const fn new(value: T) -> InMemoryRegister<T, R>[src]

pub fn get(&self) -> T[src]

pub fn set(&self, value: T)[src]

pub fn read(&self, field: Field<T, R>) -> T[src]

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

pub fn extract(&self) -> LocalRegisterCopy<T, R>[src]

pub fn write(&self, field: FieldValue<T, R>)[src]

pub fn modify(&self, field: FieldValue<T, R>)[src]

pub fn modify_no_read(
    &self,
    original: LocalRegisterCopy<T, R>,
    field: FieldValue<T, R>
)
[src]

pub fn is_set(&self, field: Field<T, R>) -> bool[src]

pub fn matches_any(&self, field: FieldValue<T, R>) -> bool[src]

pub fn matches_all(&self, field: FieldValue<T, R>) -> bool[src]

Auto Trait Implementations

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

impl<T, R = ()> !Sync for InMemoryRegister<T, R>[src]

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