[][src]Struct cortex::models::NewLogError

pub struct NewLogError {
    pub task_id: i64,
    pub category: String,
    pub what: String,
    pub details: String,
}

A new, insertable, error message

Fields

task_id: i64

owner task's id

category: String

mid-level description (open set)

what: String

low-level description (open set)

details: String

technical details of the message (e.g. localization info)

Trait Implementations

impl Clone for NewLogError[src]

impl CortexInsertable for NewLogError[src]

impl Debug for NewLogError[src]

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

type Values = <(Option<Eq<task_id, i64>>, Option<Eq<category, String>>, Option<Eq<what, String>>, Option<Eq<details, String>>) as Insertable<table>>::Values

The VALUES clause to insert these records Read more

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

type Values = <(Option<Eq<task_id, &'insert i64>>, Option<Eq<category, &'insert String>>, Option<Eq<what, &'insert String>>, Option<Eq<details, &'insert String>>) as Insertable<table>>::Values

The VALUES clause to insert these records Read more

impl LogRecord for NewLogError[src]

impl<'insert> UndecoratedInsertRecord<table> for NewLogError[src]

Auto Trait Implementations

impl RefUnwindSafe for NewLogError

impl Send for NewLogError

impl Sync for NewLogError

impl Unpin for NewLogError

impl UnwindSafe for NewLogError

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T, I> AsResult<T, I> for T where
    I: Input, 

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> IntoCollection<T> for T

impl<T> IntoSql for T

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized

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<T> Typeable for T where
    T: Any

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