[][src]Struct kubos_telemetry_db::models::Entry

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

Fields

timestamp: f64subsystem: Stringparameter: Stringvalue: String

Trait Implementations

impl Debug for Entry[src][+]

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

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

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

impl<'insert> Insertable<table> for Entry[src][+]

type Values = <(Option<Eq<timestamp, f64>>, Option<Eq<subsystem, String>>, Option<Eq<parameter, String>>, Option<Eq<value, String>>) as Insertable<table>>::Values

The VALUES clause to insert these records Read more

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

type Values = <(Option<Eq<timestamp, &'insert f64>>, Option<Eq<subsystem, &'insert String>>, Option<Eq<parameter, &'insert String>>, Option<Eq<value, &'insert String>>) as Insertable<table>>::Values

The VALUES clause to insert these records Read more

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

impl<'de> Deserialize<'de> for Entry[src][+]

impl Serialize for Entry[src][+]

Auto Trait Implementations

impl Send for Entry

impl Unpin for Entry

impl Sync for Entry

impl UnwindSafe for Entry

impl RefUnwindSafe for Entry

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src][+]

impl<T> From<T> 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<T> BorrowMut<T> for T where
    T: ?Sized
[src][+]

impl<T> Borrow<T> for T where
    T: ?Sized
[src][+]

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

impl<T> IntoSql for T[+]

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