pub struct PageHandle(pub u64);Expand description
An opaque engine-side handle to a page. The daemon associates each
PageHandle with one pages row in vs-store.
Tuple Fields§
§0: u64Trait Implementations§
Source§impl Clone for PageHandle
impl Clone for PageHandle
Source§fn clone(&self) -> PageHandle
fn clone(&self) -> PageHandle
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PageHandle
impl Debug for PageHandle
Source§impl Hash for PageHandle
impl Hash for PageHandle
Source§impl Ord for PageHandle
impl Ord for PageHandle
Source§fn cmp(&self, other: &PageHandle) -> Ordering
fn cmp(&self, other: &PageHandle) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for PageHandle
impl PartialEq for PageHandle
Source§fn eq(&self, other: &PageHandle) -> bool
fn eq(&self, other: &PageHandle) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for PageHandle
impl PartialOrd for PageHandle
impl Copy for PageHandle
impl Eq for PageHandle
impl StructuralPartialEq for PageHandle
Auto Trait Implementations§
impl Freeze for PageHandle
impl RefUnwindSafe for PageHandle
impl Send for PageHandle
impl Sync for PageHandle
impl Unpin for PageHandle
impl UnsafeUnpin for PageHandle
impl UnwindSafe for PageHandle
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