pub struct AdapterU8s<W> { /* private fields */ }Expand description
Implementations§
Source§impl<W> AdapterU8s<W>
impl<W> AdapterU8s<W>
Trait Implementations§
Source§impl<W: DcxPin> DcxPin for AdapterU8s<W>
impl<W: DcxPin> DcxPin for AdapterU8s<W>
Source§fn set_dcx_command_mode(&mut self)
fn set_dcx_command_mode(&mut self)
Toggles the DCX pin to the
command mode (LOW value).Source§fn set_dcx_data_mode(&mut self)
fn set_dcx_data_mode(&mut self)
Toggles the DCX pin to the
data mode (HIGH value).Source§impl<'a, W: Read<'a>> Read<'a> for AdapterU8s<W>
impl<'a, W: Read<'a>> Read<'a> for AdapterU8s<W>
type ReadBitsType = <W as Read<'a>>::ReadBitsType
fn start_reading(&'a mut self) -> Self::ReadBitsType
Source§impl<'a, W: WriteU8s<'a>> WriteU8<'a> for AdapterU8s<W>
impl<'a, W: WriteU8s<'a>> WriteU8<'a> for AdapterU8s<W>
type WriteU8Done = <W as WriteU8s<'a>>::WriteU8sDone
fn write_u8(&'a mut self, data: u8) -> Self::WriteU8Done
Source§impl<'a, W: WriteU8s<'a>> WriteU8s<'a> for AdapterU8s<W>
impl<'a, W: WriteU8s<'a>> WriteU8s<'a> for AdapterU8s<W>
type WriteU8sDone = <W as WriteU8s<'a>>::WriteU8sDone
fn write_u8s(&'a mut self, data: &'a [u8]) -> Self::WriteU8sDone
Auto Trait Implementations§
impl<W> Freeze for AdapterU8s<W>where
W: Freeze,
impl<W> RefUnwindSafe for AdapterU8s<W>where
W: RefUnwindSafe,
impl<W> Send for AdapterU8s<W>where
W: Send,
impl<W> Sync for AdapterU8s<W>where
W: Sync,
impl<W> Unpin for AdapterU8s<W>where
W: Unpin,
impl<W> UnwindSafe for AdapterU8s<W>where
W: UnwindSafe,
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