pub enum TransferWidth {
Width8 = 0,
Width16 = 1,
Width32 = 2,
}Expand description
Transfer width (data size per beat).
Variants§
Trait Implementations§
Source§impl Clone for TransferWidth
impl Clone for TransferWidth
Source§fn clone(&self) -> TransferWidth
fn clone(&self) -> TransferWidth
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 TransferWidth
Source§impl Debug for TransferWidth
impl Debug for TransferWidth
impl Eq for TransferWidth
Source§impl PartialEq for TransferWidth
impl PartialEq for TransferWidth
Source§fn eq(&self, other: &TransferWidth) -> bool
fn eq(&self, other: &TransferWidth) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TransferWidth
Auto Trait Implementations§
impl Freeze for TransferWidth
impl RefUnwindSafe for TransferWidth
impl Send for TransferWidth
impl Sync for TransferWidth
impl Unpin for TransferWidth
impl UnsafeUnpin for TransferWidth
impl UnwindSafe for TransferWidth
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