Enum BypAddrPar
#[repr(u8)]pub enum BypAddrPar {
NOBYPASS = 0,
BYPASS = 1,
}
Variants§
NOBYPASS = 0
The ramload operation is performed taking into consideration bit 29 of the address when the parity is calculated
BYPASS = 1
The ramload operation is performed without taking into consideration bit 29 of the address when the parity is calculated
Implementations§
§impl BypAddrPar
impl BypAddrPar
pub const fn from_bits(val: u8) -> BypAddrPar
pub const fn to_bits(self) -> u8
Trait Implementations§
§impl Clone for BypAddrPar
impl Clone for BypAddrPar
§fn clone(&self) -> BypAddrPar
fn clone(&self) -> BypAddrPar
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl From<BypAddrPar> for u8
impl From<BypAddrPar> for u8
§fn from(val: BypAddrPar) -> u8
fn from(val: BypAddrPar) -> u8
Converts to this type from the input type.
§impl From<u8> for BypAddrPar
impl From<u8> for BypAddrPar
§fn from(val: u8) -> BypAddrPar
fn from(val: u8) -> BypAddrPar
Converts to this type from the input type.
§impl Ord for BypAddrPar
impl Ord for BypAddrPar
§impl PartialEq for BypAddrPar
impl PartialEq for BypAddrPar
§impl PartialOrd for BypAddrPar
impl PartialOrd for BypAddrPar
impl Copy for BypAddrPar
impl Eq for BypAddrPar
impl StructuralPartialEq for BypAddrPar
Auto Trait Implementations§
impl Freeze for BypAddrPar
impl RefUnwindSafe for BypAddrPar
impl Send for BypAddrPar
impl Sync for BypAddrPar
impl Unpin for BypAddrPar
impl UnwindSafe for BypAddrPar
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