[][src]Struct nature_db::RawTaskError

pub struct RawTaskError {
    pub task_id: Vec<u8>,
    pub meta: String,
    pub data_type: i16,
    pub data: String,
    pub last_state_version: i32,
    pub create_time: NaiveDateTime,
    pub msg: String,
}

Fields

task_id: Vec<u8>meta: Stringdata_type: i16data: Stringlast_state_version: i32create_time: NaiveDateTimemsg: String

Methods

impl RawTaskError[src]

pub fn from_raw(err: &NatureError, raw: &RawTask) -> Self[src]

Trait Implementations

impl Debug for RawTaskError[src]

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

type Values = <(Option<Eq<task_id, Vec<u8>>>, Option<Eq<meta, String>>, Option<Eq<data_type, i16>>, Option<Eq<data, String>>, Option<Eq<last_state_version, i32>>, Option<Eq<create_time, NaiveDateTime>>, Option<Eq<msg, String>>) as Insertable<table>>::Values

The VALUES clause to insert these records Read more

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

type Values = <(Option<Eq<task_id, &'insert Vec<u8>>>, Option<Eq<meta, &'insert String>>, Option<Eq<data_type, &'insert i16>>, Option<Eq<data, &'insert String>>, Option<Eq<last_state_version, &'insert i32>>, Option<Eq<create_time, &'insert NaiveDateTime>>, Option<Eq<msg, &'insert String>>) as Insertable<table>>::Values

The VALUES clause to insert these records Read more

impl<'insert> UndecoratedInsertRecord<table> for RawTaskError[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, 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>,