[][src]Struct hammersbald::PRef

pub struct PRef(_);

Pointer to persistent data. Limited to 2^48

Methods

impl PRef[src]

pub fn invalid() -> PRef[src]

construct an invalid pref

pub fn is_valid(&self) -> bool[src]

is this a valid pref?

pub fn as_u64(&self) -> u64[src]

convert to a number

pub fn this_page(&self) -> PRef[src]

pref of the page of this pref

pub fn page_number(&self) -> u64[src]

compute page number of an pref

pub fn in_page_pos(&self) -> usize[src]

position within the pref's page

pub fn pages_until(&self, other: PRef) -> usize[src]

number of pages from this until an other

pub fn next_page(&self) -> PRef[src]

next page

pub fn prev_page(&self) -> PRef[src]

previous page

pub fn add_pages(&self, n: usize) -> PRef[src]

add n pages

Trait Implementations

impl PartialOrd<PRef> for PRef[src]

#[must_use] fn lt(&self, other: &Rhs) -> bool1.0.0[src]

This method tests less than (for self and other) and is used by the < operator. Read more

#[must_use] fn le(&self, other: &Rhs) -> bool1.0.0[src]

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

#[must_use] fn gt(&self, other: &Rhs) -> bool1.0.0[src]

This method tests greater than (for self and other) and is used by the > operator. Read more

#[must_use] fn ge(&self, other: &Rhs) -> bool1.0.0[src]

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl PartialEq<PRef> for PRef[src]

impl Copy for PRef[src]

impl Ord for PRef[src]

fn max(self, other: Self) -> Self1.21.0[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self1.21.0[src]

Compares and returns the minimum of two values. Read more

fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

Restrict a value to a certain interval. Read more

impl Eq for PRef[src]

impl Default for PRef[src]

impl From<u64> for PRef[src]

impl Clone for PRef[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Hash for PRef[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Add<u64> for PRef[src]

type Output = PRef

The resulting type after applying the + operator.

impl Sub<u64> for PRef[src]

type Output = PRef

The resulting type after applying the - operator.

impl AddAssign<u64> for PRef[src]

impl SubAssign<u64> for PRef[src]

impl Debug for PRef[src]

impl Display for PRef[src]

Auto Trait Implementations

impl Send for PRef

impl Unpin for PRef

impl Sync for PRef

impl UnwindSafe for PRef

impl RefUnwindSafe for PRef

Blanket Implementations

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]