[][src]Trait sanakirja::Representable

pub trait Representable: Copy + Debug {
    type PageOffsets: Iterator<Item = u64>;
    fn onpage_size(&self) -> u16;
unsafe fn write_value(&self, p: *mut u8);
unsafe fn read_value(p: *const u8) -> Self;
unsafe fn cmp_value<T: LoadPage>(&self, txn: &T, x: Self) -> Ordering;
fn page_offsets(&self) -> Self::PageOffsets; fn alignment() -> Alignment { ... }
unsafe fn skip(p: *mut u8) -> *mut u8 { ... }
fn drop_value<T, R: Rng>(
        &self,
        _: &mut MutTxn<T>,
        _: &mut R
    ) -> Result<(), Error> { ... } }

Types that can be stored in a Sanakirja database, as keys or values. Some care must be taken when storing things.

Associated Types

type PageOffsets: Iterator<Item = u64>

An iterator over the offsets to pages contained in this value. Only values from this crate can generate non-empty iterators, but combined values (like tuples) must chain the iterators returned by method page_offsets.

Loading content...

Required methods

fn onpage_size(&self) -> u16

How much space this value occupies on the page (not counting alignment padding).

unsafe fn write_value(&self, p: *mut u8)

Write this value to a u8 pointer, guaranteed to be a multiple of self.alignment().

unsafe fn read_value(p: *const u8) -> Self

Read value from an onpage pointer, guaranteed to be a multiple of self.alignment().

unsafe fn cmp_value<T: LoadPage>(&self, txn: &T, x: Self) -> Ordering

Compare a value with an onpage value. The current transaction is sometimes helpful, for instance when the page only stores a pointer to another page.

fn page_offsets(&self) -> Self::PageOffsets

If this value is an offset to another page at offset offset, return Some(offset). Return None else.

Loading content...

Provided methods

fn alignment() -> Alignment

Alignment of this type. Allowed values are 1, 2, 4 and 8.

unsafe fn skip(p: *mut u8) -> *mut u8

First pointer strictly after this value's pointer. The default implementation is basically p.offset(self.onpage_size() as isize), but their might be more efficient implementations in some cases.

fn drop_value<T, R: Rng>(
    &self,
    _: &mut MutTxn<T>,
    _: &mut R
) -> Result<(), Error>

How to free the pages used by this value. The default implementation doesn't do anything, which is fine for types stored directly on B tree pages.

Loading content...

Implementations on Foreign Types

impl<A: Representable, B: Representable> Representable for (A, B)[src]

type PageOffsets = Chain<A::PageOffsets, B::PageOffsets>

impl<A: Representable, B: Representable, C: Representable> Representable for (A, B, C)[src]

type PageOffsets = Chain<Chain<A::PageOffsets, B::PageOffsets>, C::PageOffsets>

impl<A: Representable, B: Representable, C: Representable, D: Representable> Representable for (A, B, C, D)[src]

type PageOffsets = Chain<Chain<A::PageOffsets, B::PageOffsets>, Chain<C::PageOffsets, D::PageOffsets>>

impl Representable for f64[src]

type PageOffsets = Empty<u64>

impl Representable for u64[src]

type PageOffsets = Empty<u64>

impl Representable for u32[src]

type PageOffsets = Empty<u64>

impl Representable for i64[src]

type PageOffsets = Empty<u64>

impl Representable for i32[src]

type PageOffsets = Empty<u64>

impl Representable for ()[src]

type PageOffsets = Empty<u64>

Loading content...

Implementors

impl Representable for UnsafeValue[src]

type PageOffsets = IntoIter<u64>

impl<K: Representable, V: Representable> Representable for Db<K, V>[src]

type PageOffsets = Once<u64>

Loading content...