pub struct RegisterProxy<'a, M: Mmio + ?Sized, R: Register> { /* private fields */ }Expand description
A proxy struct for interacting with a specific Register over a specific Mmio.
This provides a more ergonomic API than calling methods directly on the MmioExt
trait.
Implementations§
Source§impl<'a, M: Mmio + ?Sized, R: ReadableRegister> RegisterProxy<'a, M, R>
impl<'a, M: Mmio + ?Sized, R: ReadableRegister> RegisterProxy<'a, M, R>
Auto Trait Implementations§
impl<'a, M, R> Freeze for RegisterProxy<'a, M, R>where
M: ?Sized,
impl<'a, M, R> RefUnwindSafe for RegisterProxy<'a, M, R>
impl<'a, M, R> Send for RegisterProxy<'a, M, R>
impl<'a, M, R> Sync for RegisterProxy<'a, M, R>
impl<'a, M, R> Unpin for RegisterProxy<'a, M, R>
impl<'a, M, R> UnsafeUnpin for RegisterProxy<'a, M, R>where
M: ?Sized,
impl<'a, M, R> UnwindSafe for RegisterProxy<'a, M, R>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more