pub struct CasKey<P>{ /* private fields */ }Expand description
lock-free pagecache
A wrapper struct for a pointer to a (possibly invalid, hence inaccessible)
PageFrag used for applying updates atomically to shared pages.
Trait Implementations§
impl<P> Copy for CasKey<P>
impl<P> StructuralPartialEq for CasKey<P>
Auto Trait Implementations§
impl<P> Freeze for CasKey<P>
impl<P> RefUnwindSafe for CasKey<P>where
P: RefUnwindSafe,
impl<P> !Send for CasKey<P>
impl<P> !Sync for CasKey<P>
impl<P> Unpin for CasKey<P>
impl<P> UnwindSafe for CasKey<P>where
P: RefUnwindSafe,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more