[][src]Struct nature_db::RawMeta

pub struct RawMeta {
    pub meta_type: String,
    pub meta_key: String,
    pub description: Option<String>,
    pub version: i32,
    pub states: Option<String>,
    pub fields: Option<String>,
    pub config: String,
    pub flag: i32,
    pub create_time: NaiveDateTime,
}

Fields

meta_type: Stringmeta_key: Stringdescription: Option<String>

For human readable what the Meta is.

version: i32

version of the Meta

states: Option<String>fields: Option<String>

Define whats the Meta should include

config: Stringflag: i32create_time: NaiveDateTime

Trait Implementations

impl Clone for RawMeta[src]

impl Debug for RawMeta[src]

impl Default for RawMeta[src]

impl From<Meta> for RawMeta[src]

impl From<Row> for RawMeta[src]

impl Into<Vec<(String, Value)>> for RawMeta[src]

impl PartialEq<RawMeta> for RawMeta[src]

impl StructuralPartialEq for RawMeta[src]

impl TryInto<Meta> for RawMeta[src]

type Error = NatureError

The type returned in the event of a conversion error.

Auto Trait Implementations

impl RefUnwindSafe for RawMeta

impl Send for RawMeta

impl Sync for RawMeta

impl Unpin for RawMeta

impl UnwindSafe for RawMeta

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