pub struct Entry {
    pub timestamp: f64,
    pub subsystem: String,
    pub parameter: String,
    pub value: String,
}

Fields

timestamp: f64subsystem: Stringparameter: Stringvalue: String

Trait Implementations

source

impl Debug for Entry

Formats the value using the given formatter. Read more

source

impl<'de> Deserialize<'de> for Entry

Deserialize this value from the given Serde deserializer. Read more

The VALUES clause to insert these records Read more

Construct Self::Values Read more

Insert self into a given table. Read more

source

impl<'insert> Insertable<table> for Entry

The VALUES clause to insert these records Read more

Construct Self::Values Read more

Insert self into a given table. Read more

source

impl<__DB: Backend, __ST> Queryable<__ST, __DB> for Entry where
    (f64, String, String, String): Queryable<__ST, __DB>, 

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

Construct an instance of this type

source

impl Serialize for Entry

Serialize this value into the given Serde serializer. Read more

source

impl<'insert> UndecoratedInsertRecord<table> for Entry

Auto Trait Implementations

impl RefUnwindSafe for Entry

impl Send for Entry

impl Sync for Entry

impl Unpin for Entry

impl UnwindSafe for Entry

Blanket Implementations

source

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

Gets the TypeId of self. Read more

source

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

Immutably borrows from an owned value. Read more

source

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

Mutably borrows from an owned value. Read more

source

impl<T> From<T> for T

Returns the argument unchanged.

source

impl<T, U> Into<U> for T where
    U: From<T>, 

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

impl<T> IntoSql for T

Convert self to an expression for Diesel’s query builder. Read more

Convert &self to an expression for Diesel’s query builder. Read more

source

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 

The type returned in the event of a conversion error.

Performs the conversion.

source

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

The type returned in the event of a conversion error.

Performs the conversion.

source

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>,