pub struct Translated {
pub addr: u32,
pub uncached: bool,
}Expand description
A successful translation.
Fields§
§addr: u32The physical address.
uncached: boolWhether the access bypasses the caches.
Trait Implementations§
Source§impl Clone for Translated
impl Clone for Translated
Source§fn clone(&self) -> Translated
fn clone(&self) -> Translated
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 Translated
impl Debug for Translated
Source§impl<'de> Deserialize<'de> for Translated
impl<'de> Deserialize<'de> for Translated
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for Translated
impl PartialEq for Translated
Source§impl Serialize for Translated
impl Serialize for Translated
impl Copy for Translated
impl Eq for Translated
impl StructuralPartialEq for Translated
Auto Trait Implementations§
impl Freeze for Translated
impl RefUnwindSafe for Translated
impl Send for Translated
impl Sync for Translated
impl Unpin for Translated
impl UnsafeUnpin for Translated
impl UnwindSafe for Translated
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