pub enum RemoveRegionResult {
Sync,
Async(IfElseCfg<(), Never, { _ }>),
}
Expand description
Valid results for MPU::remove_memory_region
Variants§
Sync
Region was removed synchronously
Async(IfElseCfg<(), Never, { _ }>)
Region will be revoked next time crate::process::Process::revoke_regions is called
Auto Trait Implementations§
impl Freeze for RemoveRegionResult
impl RefUnwindSafe for RemoveRegionResult
impl Send for RemoveRegionResult
impl Sync for RemoveRegionResult
impl Unpin for RemoveRegionResult
impl UnwindSafe for RemoveRegionResult
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