pub struct MutPage(pub CowPage);
Expand description
An owned page on which we can write. This is just a wrapper around
CowPage
to avoid checking the “dirty” bit at runtime.
Tuple Fields§
§0: CowPage
Implementations§
Source§impl MutPage
impl MutPage
pub unsafe fn clear_dirty(&mut self)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MutPage
impl RefUnwindSafe for MutPage
impl Send for MutPage
impl Sync for MutPage
impl Unpin for MutPage
impl UnwindSafe for MutPage
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