Struct sanakirja_core::MutPage
source · 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 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