[][src]Struct esl01_indexedlog::index::LinkOffset

pub struct LinkOffset(_);

Offset to a linked list entry.

The entry stores a u64 integer and optionally, the next LinkOffset.

Methods

impl LinkOffset[src]

pub fn values(self, index: &Index) -> LeafValueIter[src]

Iterating through values referred by this linked list.

Trait Implementations

impl Clone for LinkOffset[src]

impl Copy for LinkOffset[src]

impl Debug for LinkOffset[src]

impl Default for LinkOffset[src]

impl Deref for LinkOffset[src]

type Target = Offset

The resulting type after dereferencing.

impl From<LinkOffset> for Offset[src]

impl From<LinkOffset> for u64[src]

impl From<LinkOffset> for usize[src]

impl PartialEq<LinkOffset> for LinkOffset[src]

impl PartialOrd<LinkOffset> for LinkOffset[src]

impl StructuralPartialEq for LinkOffset[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, 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>,