pub struct SauRegion {
pub base_address: u32,
pub limit_address: u32,
pub attribute: SauRegionAttribute,
}
Expand description
Description of a SAU region.
Fields§
§base_address: u32
First address of the region, its 5 least significant bits must be set to zero.
limit_address: u32
Last address of the region, its 5 least significant bits must be set to one.
attribute: SauRegionAttribute
Attribute of the region.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SauRegion
impl RefUnwindSafe for SauRegion
impl Send for SauRegion
impl Sync for SauRegion
impl Unpin for SauRegion
impl UnwindSafe for SauRegion
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