pub enum PMR {
ONETOONE,
TWOTOONE,
THREETOONE,
FOURTOONE,
}
Expand description
Possible values of the field PM
Variants§
ONETOONE
RxDMA priority over TxDMA is 1:1
TWOTOONE
RxDMA priority over TxDMA is 2:1
THREETOONE
RxDMA priority over TxDMA is 3:1
FOURTOONE
RxDMA priority over TxDMA is 4:1
Implementations§
Source§impl PMR
impl PMR
Sourcepub fn is_one_to_one(&self) -> bool
pub fn is_one_to_one(&self) -> bool
Checks if the value of the field is ONETOONE
Sourcepub fn is_two_to_one(&self) -> bool
pub fn is_two_to_one(&self) -> bool
Checks if the value of the field is TWOTOONE
Sourcepub fn is_three_to_one(&self) -> bool
pub fn is_three_to_one(&self) -> bool
Checks if the value of the field is THREETOONE
Sourcepub fn is_four_to_one(&self) -> bool
pub fn is_four_to_one(&self) -> bool
Checks if the value of the field is FOURTOONE
Trait Implementations§
impl Copy for PMR
impl StructuralPartialEq for PMR
Auto Trait Implementations§
impl Freeze for PMR
impl RefUnwindSafe for PMR
impl Send for PMR
impl Sync for PMR
impl Unpin for PMR
impl UnwindSafe for PMR
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