pub struct RegisterNode { /* private fields */ }Implementations§
Source§impl RegisterNode
impl RegisterNode
pub fn register_base(&self) -> &RegisterBase
Trait Implementations§
Source§impl Clone for RegisterNode
impl Clone for RegisterNode
Source§fn clone(&self) -> RegisterNode
fn clone(&self) -> RegisterNode
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RegisterNode
impl Debug for RegisterNode
Source§impl INode for RegisterNode
impl INode for RegisterNode
Source§impl IRegister for RegisterNode
impl IRegister for RegisterNode
Source§fn read<T: ValueStore, U: CacheStore>(
&self,
buf: &mut [u8],
device: &mut impl Device,
store: &impl NodeStore,
cx: &mut ValueCtxt<T, U>,
) -> GenApiResult<()>
fn read<T: ValueStore, U: CacheStore>( &self, buf: &mut [u8], device: &mut impl Device, store: &impl NodeStore, cx: &mut ValueCtxt<T, U>, ) -> GenApiResult<()>
Read bytes from the register. Read more
Source§fn write<T: ValueStore, U: CacheStore>(
&self,
buf: &[u8],
device: &mut impl Device,
store: &impl NodeStore,
cx: &mut ValueCtxt<T, U>,
) -> GenApiResult<()>
fn write<T: ValueStore, U: CacheStore>( &self, buf: &[u8], device: &mut impl Device, store: &impl NodeStore, cx: &mut ValueCtxt<T, U>, ) -> GenApiResult<()>
Write bytes to the register. Read more
fn address<T: ValueStore, U: CacheStore>( &self, device: &mut impl Device, store: &impl NodeStore, cx: &mut ValueCtxt<T, U>, ) -> GenApiResult<i64>
fn length<T: ValueStore, U: CacheStore>( &self, device: &mut impl Device, store: &impl NodeStore, cx: &mut ValueCtxt<T, U>, ) -> GenApiResult<i64>
Auto Trait Implementations§
impl Freeze for RegisterNode
impl RefUnwindSafe for RegisterNode
impl Send for RegisterNode
impl Sync for RegisterNode
impl Unpin for RegisterNode
impl UnwindSafe for RegisterNode
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