Struct hammersbald::PRef[][src]

pub struct PRef(_);

Pointer to persistent data. Limited to 2^48

Implementations

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 Add<u64> for PRef[src]

type Output = PRef

The resulting type after applying the + operator.

impl AddAssign<u64> for PRef[src]

impl Clone for PRef[src]

impl Copy for PRef[src]

impl Debug for PRef[src]

impl Default for PRef[src]

impl Display for PRef[src]

impl Eq for PRef[src]

impl From<u64> for PRef[src]

impl Hash for PRef[src]

impl Ord for PRef[src]

impl PartialEq<PRef> for PRef[src]

impl PartialOrd<PRef> for PRef[src]

impl StructuralEq for PRef[src]

impl StructuralPartialEq for PRef[src]

impl Sub<u64> for PRef[src]

type Output = PRef

The resulting type after applying the - operator.

impl SubAssign<u64> for PRef[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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<V, T> VZip<V> for T where
    V: MultiLane<T>,