Struct sanakirja::btree::del::ModifiedPage[][src]

pub struct ModifiedPage<'a, K, V, P> where
    P: BTreePage<K, V>,
    K: ?Sized,
    V: ?Sized
{ pub page: CowPage, pub mutable: bool, pub c0: <P as BTreePage<K, V>>::Cursor, pub l: u64, pub r: u64, pub ins: Option<(&'a K, &'a V)>, pub ins2: Option<(&'a K, &'a V)>, pub c1: <P as BTreePage<K, V>>::Cursor, pub skip_first: bool, }

Represents a page with modifications from a merge.

Fields

page: CowPagemutable: boolc0: <P as BTreePage<K, V>>::Cursorl: u64r: u64ins: Option<(&'a K, &'a V)>ins2: Option<(&'a K, &'a V)>c1: <P as BTreePage<K, V>>::Cursorskip_first: bool

Trait Implementations

impl<'a, K, V, P> Debug for ModifiedPage<'a, K, V, P> where
    P: BTreePage<K, V> + Debug,
    K: Debug + ?Sized,
    V: Debug + ?Sized,
    <P as BTreePage<K, V>>::Cursor: Debug
[src]

Auto Trait Implementations

impl<'a, K: ?Sized, V: ?Sized, P> RefUnwindSafe for ModifiedPage<'a, K, V, P> where
    K: RefUnwindSafe,
    V: RefUnwindSafe,
    <P as BTreePage<K, V>>::Cursor: RefUnwindSafe

impl<'a, K, V, P> !Send for ModifiedPage<'a, K, V, P>

impl<'a, K, V, P> !Sync for ModifiedPage<'a, K, V, P>

impl<'a, K: ?Sized, V: ?Sized, P> Unpin for ModifiedPage<'a, K, V, P> where
    <P as BTreePage<K, V>>::Cursor: Unpin

impl<'a, K: ?Sized, V: ?Sized, P> UnwindSafe for ModifiedPage<'a, K, V, P> where
    K: RefUnwindSafe,
    V: RefUnwindSafe,
    <P as BTreePage<K, V>>::Cursor: UnwindSafe

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, 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.