[][src]Struct tslite::RecordInfo

pub struct RecordInfo { /* fields omitted */ }

Represent an entry in the database. time_offset represent the number of seconds passed since the origin date of the DB. It's a u32, which means you should be able to store record up to 136 years after the origin date of the DB.

Implementations

impl RecordInfo[src]

pub fn as_bytes(&self) -> Vec<u8>[src]

Trait Implementations

impl Clone for RecordInfo[src]

impl Copy for RecordInfo[src]

impl Debug for RecordInfo[src]

impl Eq for RecordInfo[src]

impl<'_> From<&'_ [u8]> for RecordInfo[src]

impl Ord for RecordInfo[src]

impl PartialEq<RecordInfo> for RecordInfo[src]

impl PartialOrd<RecordInfo> for RecordInfo[src]

impl StructuralEq for RecordInfo[src]

impl StructuralPartialEq for RecordInfo[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.