[][src]Struct leaves::Leaf

pub struct Leaf {
    pub tag: i32,
    pub max_id: i64,
    pub step: i32,
}

data stored in DB

Fields

tag: i32

unique identifier

max_id: i64step: i32

step when updating max_id

Trait Implementations

impl Clone for Leaf[src]

impl Copy for Leaf[src]

impl Debug for Leaf[src]

impl<'de> Deserialize<'de> for Leaf[src]

impl<'a, R: Row<'a>> FromRow<'a, R> for Leaf where
    &'a str: ColumnIndex<'a, R>,
    i32: Decode<'a, R::Database>,
    i32: Type<R::Database>,
    i64: Decode<'a, R::Database>,
    i64: Type<R::Database>,
    i32: Decode<'a, R::Database>,
    i32: Type<R::Database>, 
[src]

impl Serialize for Leaf[src]

impl TryFrom<Value> for Leaf[src]

type Error = Error

The type returned in the event of a conversion error.

Auto Trait Implementations

impl RefUnwindSafe for Leaf

impl Send for Leaf

impl Sync for Leaf

impl Unpin for Leaf

impl UnwindSafe for Leaf

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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