pub struct Mem2MemTxTransfer<'d, Dm: DriverMode, BUF: DmaTxBuffer> { /* private fields */ }Expand description
Represents an ongoing (or potentially finished) DMA Memory-to-Memory TX transfer.
Implementations§
Source§impl<'d, Dm: DriverMode, BUF: DmaTxBuffer> Mem2MemTxTransfer<'d, Dm, BUF>
impl<'d, Dm: DriverMode, BUF: DmaTxBuffer> Mem2MemTxTransfer<'d, Dm, BUF>
Trait Implementations§
Source§impl<Dm: DriverMode, BUF: DmaTxBuffer> Deref for Mem2MemTxTransfer<'_, Dm, BUF>
Available on crate feature unstable only.
impl<Dm: DriverMode, BUF: DmaTxBuffer> Deref for Mem2MemTxTransfer<'_, Dm, BUF>
Available on crate feature
unstable only.Source§impl<Dm: DriverMode, BUF: DmaTxBuffer> DerefMut for Mem2MemTxTransfer<'_, Dm, BUF>
Available on crate feature unstable only.
impl<Dm: DriverMode, BUF: DmaTxBuffer> DerefMut for Mem2MemTxTransfer<'_, Dm, BUF>
Available on crate feature
unstable only.Source§impl<Dm: DriverMode, BUF: DmaTxBuffer> Drop for Mem2MemTxTransfer<'_, Dm, BUF>
Available on crate feature unstable only.
impl<Dm: DriverMode, BUF: DmaTxBuffer> Drop for Mem2MemTxTransfer<'_, Dm, BUF>
Available on crate feature
unstable only.Auto Trait Implementations§
impl<'d, Dm, BUF> Freeze for Mem2MemTxTransfer<'d, Dm, BUF>
impl<'d, Dm, BUF> RefUnwindSafe for Mem2MemTxTransfer<'d, Dm, BUF>
impl<'d, Dm, BUF> Send for Mem2MemTxTransfer<'d, Dm, BUF>
impl<'d, Dm, BUF> Sync for Mem2MemTxTransfer<'d, Dm, BUF>
impl<'d, Dm, BUF> Unpin for Mem2MemTxTransfer<'d, Dm, BUF>
impl<'d, Dm, BUF> !UnwindSafe for Mem2MemTxTransfer<'d, Dm, BUF>
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
Source§impl<R> TryRngCore for R
impl<R> TryRngCore for R
Source§type Error = Infallible
type Error = Infallible
The type returned in the event of a RNG error.
Source§fn try_next_u32(&mut self) -> Result<u32, <R as TryRngCore>::Error>
fn try_next_u32(&mut self) -> Result<u32, <R as TryRngCore>::Error>
Return the next random
u32.Source§fn try_next_u64(&mut self) -> Result<u64, <R as TryRngCore>::Error>
fn try_next_u64(&mut self) -> Result<u64, <R as TryRngCore>::Error>
Return the next random
u64.Source§fn try_fill_bytes(
&mut self,
dst: &mut [u8],
) -> Result<(), <R as TryRngCore>::Error>
fn try_fill_bytes( &mut self, dst: &mut [u8], ) -> Result<(), <R as TryRngCore>::Error>
Fill
dest entirely with random data.Source§fn unwrap_mut(&mut self) -> UnwrapMut<'_, Self>
fn unwrap_mut(&mut self) -> UnwrapMut<'_, Self>
Wrap RNG with the
UnwrapMut wrapper.