[][src]Struct nature_db::RawPlanInfo

pub struct RawPlanInfo {
    pub upstream: String,
    pub downstream: String,
    pub content: String,
    pub create_time: NaiveDateTime,
}

Fields

upstream: Stringdownstream: Stringcontent: Stringcreate_time: NaiveDateTime

Trait Implementations

impl Clone for RawPlanInfo[src]

impl Debug for RawPlanInfo[src]

impl<'insert> Insertable<table> for RawPlanInfo[src]

type Values = <(Option<Eq<upstream, String>>, Option<Eq<downstream, String>>, Option<Eq<content, String>>, Option<Eq<create_time, NaiveDateTime>>) as Insertable<table>>::Values

The VALUES clause to insert these records Read more

impl<'insert> Insertable<table> for &'insert RawPlanInfo[src]

type Values = <(Option<Eq<upstream, &'insert String>>, Option<Eq<downstream, &'insert String>>, Option<Eq<content, &'insert String>>, Option<Eq<create_time, &'insert NaiveDateTime>>) as Insertable<table>>::Values

The VALUES clause to insert these records Read more

impl<__DB: Backend, __ST> Queryable<__ST, __DB> for RawPlanInfo where
    (String, String, String, NaiveDateTime): Queryable<__ST, __DB>, 
[src]

type Row = <(String, String, String, NaiveDateTime) as Queryable<__ST, __DB>>::Row

The Rust type you'd like to map from. Read more

impl<'insert> UndecoratedInsertRecord<table> for RawPlanInfo[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> IntoSql for 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,