pub enum DmaTransferError {
Dma(Error),
InvalidWordLength,
WordOutOfRange,
}Variants§
Trait Implementations§
Source§impl Clone for DmaTransferError
impl Clone for DmaTransferError
Source§fn clone(&self) -> DmaTransferError
fn clone(&self) -> DmaTransferError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for DmaTransferError
Source§impl Debug for DmaTransferError
impl Debug for DmaTransferError
impl Eq for DmaTransferError
Source§impl From<Error> for DmaTransferError
impl From<Error> for DmaTransferError
Source§impl PartialEq for DmaTransferError
impl PartialEq for DmaTransferError
Source§fn eq(&self, other: &DmaTransferError) -> bool
fn eq(&self, other: &DmaTransferError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DmaTransferError
Auto Trait Implementations§
impl Freeze for DmaTransferError
impl RefUnwindSafe for DmaTransferError
impl Send for DmaTransferError
impl Sync for DmaTransferError
impl Unpin for DmaTransferError
impl UnsafeUnpin for DmaTransferError
impl UnwindSafe for DmaTransferError
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