#[repr(u8)]pub enum Boundaryselect {
_4k = 0,
_8k = 1,
_16k = 2,
_32k = 3,
_64k = 4,
_128k = 5,
_256k = 6,
_512k = 7,
}
Expand description
SDMA Buffer Boundary
Value on reset: 0
Variants§
_4k = 0
0: 4k bytes
_8k = 1
1: 8k bytes
_16k = 2
2: 16k bytes
_32k = 3
3: 32k bytes
_64k = 4
4: 64k bytes
_128k = 5
5: 128k bytes
_256k = 6
6: 256k bytes
_512k = 7
7: 512k bytes
Trait Implementations§
Source§impl Clone for Boundaryselect
impl Clone for Boundaryselect
Source§fn clone(&self) -> Boundaryselect
fn clone(&self) -> Boundaryselect
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for Boundaryselect
impl Debug for Boundaryselect
Source§impl From<Boundaryselect> for u8
impl From<Boundaryselect> for u8
Source§fn from(variant: Boundaryselect) -> Self
fn from(variant: Boundaryselect) -> Self
Converts to this type from the input type.
Source§impl PartialEq for Boundaryselect
impl PartialEq for Boundaryselect
impl Copy for Boundaryselect
impl Eq for Boundaryselect
impl IsEnum for Boundaryselect
impl StructuralPartialEq for Boundaryselect
Auto Trait Implementations§
impl Freeze for Boundaryselect
impl RefUnwindSafe for Boundaryselect
impl Send for Boundaryselect
impl Sync for Boundaryselect
impl Unpin for Boundaryselect
impl UnwindSafe for Boundaryselect
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