pub enum DmaDst<'a, T> {
Ref(&'a mut [T]),
Addr(usize),
}
Variants§
Trait Implementations§
impl<'a, T: Eq> Eq for DmaDst<'a, T>
impl<'a, T> StructuralPartialEq for DmaDst<'a, T>
Auto Trait Implementations§
impl<'a, T> Freeze for DmaDst<'a, T>
impl<'a, T> RefUnwindSafe for DmaDst<'a, T>where
T: RefUnwindSafe,
impl<'a, T> Send for DmaDst<'a, T>where
T: Send,
impl<'a, T> Sync for DmaDst<'a, T>where
T: Sync,
impl<'a, T> Unpin for DmaDst<'a, T>
impl<'a, T> !UnwindSafe for DmaDst<'a, T>
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