Struct esp32c6_hal::parl_io::ParlIoTxOnly
source · pub struct ParlIoTxOnly<'d, CH>where
CH: ChannelTypes,
<CH as ChannelTypes>::P: ParlIoPeripheral,{
pub tx: TxCreator<'d, CH>,
/* private fields */
}
Expand description
Parallel IO in half duplex / TX only mode
Fields§
§tx: TxCreator<'d, CH>
Implementations§
source§impl<'d, CH> ParlIoTxOnly<'d, CH>where
CH: ChannelTypes,
<CH as ChannelTypes>::P: ParlIoPeripheral,
impl<'d, CH> ParlIoTxOnly<'d, CH>where CH: ChannelTypes, <CH as ChannelTypes>::P: ParlIoPeripheral,
pub fn new( parl_io: impl Peripheral<P = PARL_IO> + 'd, dma_channel: Channel<'d, CH>, frequency: Rate<u32, 1, 1>, _clocks: &Clocks<'_> ) -> Result<ParlIoTxOnly<'d, CH>, Error>
Auto Trait Implementations§
impl<'d, CH> RefUnwindSafe for ParlIoTxOnly<'d, CH>where <CH as ChannelTypes>::Tx<'d>: RefUnwindSafe,
impl<'d, CH> Send for ParlIoTxOnly<'d, CH>where <CH as ChannelTypes>::Tx<'d>: Send,
impl<'d, CH> Sync for ParlIoTxOnly<'d, CH>where <CH as ChannelTypes>::Tx<'d>: Sync,
impl<'d, CH> Unpin for ParlIoTxOnly<'d, CH>where <CH as ChannelTypes>::Tx<'d>: Unpin,
impl<'d, CH> !UnwindSafe for ParlIoTxOnly<'d, CH>
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