#[repr(u8)]
pub enum BOUNDARY_A {
    _4K,
    _8K,
    _16K,
    _32K,
    _64K,
    _128K,
    _256K,
    _512K,
}Expand description
SDMA Buffer Boundary
Value on reset: 0
Variants
_4K
0: 4k bytes
_8K
1: 8k bytes
_16K
2: 16k bytes
_32K
3: 32k bytes
_64K
4: 64k bytes
_128K
5: 128k bytes
_256K
6: 256k bytes
_512K
7: 512k bytes
Trait Implementations
sourceimpl Clone for BOUNDARY_A
 
impl Clone for BOUNDARY_A
sourcefn clone(&self) -> BOUNDARY_A
 
fn clone(&self) -> BOUNDARY_A
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moresourceimpl Debug for BOUNDARY_A
 
impl Debug for BOUNDARY_A
sourceimpl From<BOUNDARY_A> for u8
 
impl From<BOUNDARY_A> for u8
sourcefn from(variant: BOUNDARY_A) -> Self
 
fn from(variant: BOUNDARY_A) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<BOUNDARY_A> for BOUNDARY_A
 
impl PartialEq<BOUNDARY_A> for BOUNDARY_A
sourcefn eq(&self, other: &BOUNDARY_A) -> bool
 
fn eq(&self, other: &BOUNDARY_A) -> bool
impl Copy for BOUNDARY_A
impl StructuralPartialEq for BOUNDARY_A
Auto Trait Implementations
impl RefUnwindSafe for BOUNDARY_A
impl Send for BOUNDARY_A
impl Sync for BOUNDARY_A
impl Unpin for BOUNDARY_A
impl UnwindSafe for BOUNDARY_A
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more