pub struct ParityErrorAddress {
pub offset: u16,
pub bus_master: Id,
pub byte: u8,
}Expand description
Parity error location, read from M2PEAR.
Fields§
§offset: u16Word-aligned SRAM2 offset of the failing access.
bus_master: IdAHB bus master that performed the failing access.
byte: u8Bitmask of which byte(s) within the word failed parity.
Trait Implementations§
Source§impl Clone for ParityErrorAddress
impl Clone for ParityErrorAddress
Source§fn clone(&self) -> ParityErrorAddress
fn clone(&self) -> ParityErrorAddress
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 ParityErrorAddress
impl Debug for ParityErrorAddress
Source§impl Format for ParityErrorAddresswhere
Id: Format,
impl Format for ParityErrorAddresswhere
Id: Format,
Source§impl PartialEq for ParityErrorAddress
impl PartialEq for ParityErrorAddress
impl Copy for ParityErrorAddress
impl Eq for ParityErrorAddress
impl StructuralPartialEq for ParityErrorAddress
Auto Trait Implementations§
impl Freeze for ParityErrorAddress
impl RefUnwindSafe for ParityErrorAddress
impl Send for ParityErrorAddress
impl Sync for ParityErrorAddress
impl Unpin for ParityErrorAddress
impl UnwindSafe for ParityErrorAddress
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