#[repr(u8)]pub enum BLOCKSIZE_A {
Show 14 variants
UNIT1 = 0,
UNIT2 = 1,
UNIT3 = 2,
UNIT4 = 3,
UNIT6 = 4,
UNIT8 = 5,
UNIT16 = 7,
UNIT32 = 9,
UNIT64 = 10,
UNIT128 = 11,
UNIT256 = 12,
UNIT512 = 13,
UNIT1024 = 14,
ALL = 15,
}
Expand description
Block Transfer Size
Value on reset: 0
Variants§
UNIT1 = 0
0: One unit transfer per arbitration
UNIT2 = 1
1: Two unit transfers per arbitration
UNIT3 = 2
2: Three unit transfers per arbitration
UNIT4 = 3
3: Four unit transfers per arbitration
UNIT6 = 4
4: Six unit transfers per arbitration
UNIT8 = 5
5: Eight unit transfers per arbitration
UNIT16 = 7
7: Sixteen unit transfers per arbitration
UNIT32 = 9
9: 32 unit transfers per arbitration
UNIT64 = 10
10: 64 unit transfers per arbitration
UNIT128 = 11
11: 128 unit transfers per arbitration
UNIT256 = 12
12: 256 unit transfers per arbitration
UNIT512 = 13
13: 512 unit transfers per arbitration
UNIT1024 = 14
14: 1024 unit transfers per arbitration
ALL = 15
15: Transfer all units as specified by the XFRCNT field
Trait Implementations§
Source§impl Clone for BLOCKSIZE_A
impl Clone for BLOCKSIZE_A
Source§fn clone(&self) -> BLOCKSIZE_A
fn clone(&self) -> BLOCKSIZE_A
Returns a duplicate 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 BLOCKSIZE_A
impl Debug for BLOCKSIZE_A
Source§impl From<BLOCKSIZE_A> for u8
impl From<BLOCKSIZE_A> for u8
Source§fn from(variant: BLOCKSIZE_A) -> Self
fn from(variant: BLOCKSIZE_A) -> Self
Converts to this type from the input type.
Source§impl PartialEq for BLOCKSIZE_A
impl PartialEq for BLOCKSIZE_A
impl Copy for BLOCKSIZE_A
impl StructuralPartialEq for BLOCKSIZE_A
Auto Trait Implementations§
impl Freeze for BLOCKSIZE_A
impl RefUnwindSafe for BLOCKSIZE_A
impl Send for BLOCKSIZE_A
impl Sync for BLOCKSIZE_A
impl Unpin for BLOCKSIZE_A
impl UnwindSafe for BLOCKSIZE_A
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