pub struct Metric {
pub id: i64,
pub timestamp: f64,
pub metric_key_id: i64,
pub value: f64,
}
Expand description
Metric model for existing entries in sqlite database
Fields§
§id: i64
Unique ID of sample
timestamp: f64
Timestamp of sample
metric_key_id: i64
Key/name of sample
value: f64
Value of sample
Trait Implementations§
Source§impl<'__b, __FK> BelongsTo<&MetricKey<'__b>> for Metricwhere
__FK: Hash + Eq,
for<'__a> &'__a i64: Into<Option<&'__a __FK>>,
for<'__a> &'__a MetricKey<'__b>: Identifiable<Id = &'__a __FK>,
impl<'__b, __FK> BelongsTo<&MetricKey<'__b>> for Metricwhere
__FK: Hash + Eq,
for<'__a> &'__a i64: Into<Option<&'__a __FK>>,
for<'__a> &'__a MetricKey<'__b>: Identifiable<Id = &'__a __FK>,
Source§type ForeignKey = __FK
type ForeignKey = __FK
The foreign key of this struct
Source§type ForeignKeyColumn = metric_key_id
type ForeignKeyColumn = metric_key_id
The database column representing the foreign key
of the table this struct represents
Source§fn foreign_key(&self) -> Option<&Self::ForeignKey>
fn foreign_key(&self) -> Option<&Self::ForeignKey>
Returns the foreign key for
self
Source§fn foreign_key_column() -> Self::ForeignKeyColumn
fn foreign_key_column() -> Self::ForeignKeyColumn
Returns the foreign key column of this struct’s table
Source§impl<'__b, __FK> BelongsTo<MetricKey<'__b>> for Metricwhere
__FK: Hash + Eq,
for<'__a> &'__a i64: Into<Option<&'__a __FK>>,
for<'__a> &'__a MetricKey<'__b>: Identifiable<Id = &'__a __FK>,
impl<'__b, __FK> BelongsTo<MetricKey<'__b>> for Metricwhere
__FK: Hash + Eq,
for<'__a> &'__a i64: Into<Option<&'__a __FK>>,
for<'__a> &'__a MetricKey<'__b>: Identifiable<Id = &'__a __FK>,
Source§type ForeignKey = __FK
type ForeignKey = __FK
The foreign key of this struct
Source§type ForeignKeyColumn = metric_key_id
type ForeignKeyColumn = metric_key_id
The database column representing the foreign key
of the table this struct represents
Source§fn foreign_key(&self) -> Option<&Self::ForeignKey>
fn foreign_key(&self) -> Option<&Self::ForeignKey>
Returns the foreign key for
self
Source§fn foreign_key_column() -> Self::ForeignKeyColumn
fn foreign_key_column() -> Self::ForeignKeyColumn
Returns the foreign key column of this struct’s table
Source§impl<'ident> Identifiable for &'ident Metric
impl<'ident> Identifiable for &'ident Metric
Auto Trait Implementations§
impl Freeze for Metric
impl RefUnwindSafe for Metric
impl Send for Metric
impl Sync for Metric
impl Unpin for Metric
impl UnwindSafe for Metric
Blanket Implementations§
Source§impl<'a, Parent, Child> BelongingToDsl<&'a Vec<Parent>> for Childwhere
Child: BelongingToDsl<&'a [Parent]>,
impl<'a, Parent, Child> BelongingToDsl<&'a Vec<Parent>> for Childwhere
Child: BelongingToDsl<&'a [Parent]>,
Source§type Output = <Child as BelongingToDsl<&'a [Parent]>>::Output
type Output = <Child as BelongingToDsl<&'a [Parent]>>::Output
The query returned by
belonging_to
Source§fn belonging_to(
parents: &'a Vec<Parent>,
) -> <Child as BelongingToDsl<&'a Vec<Parent>>>::Output
fn belonging_to( parents: &'a Vec<Parent>, ) -> <Child as BelongingToDsl<&'a Vec<Parent>>>::Output
Get the record(s) belonging to record(s)
other
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoSql for T
impl<T> IntoSql for T
Source§fn into_sql<T>(self) -> Self::Expression
fn into_sql<T>(self) -> Self::Expression
Convert
self
to an expression for Diesel’s query builder. Read moreSource§fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expression
fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expression
Convert
&self
to an expression for Diesel’s query builder. Read moreSource§impl<T, ST, DB> StaticallySizedRow<ST, DB> for T
impl<T, ST, DB> StaticallySizedRow<ST, DB> for T
Source§const FIELD_COUNT: usize = <ST as crate::util::TupleSize>::SIZE
const FIELD_COUNT: usize = <ST as crate::util::TupleSize>::SIZE
The number of fields that this type will consume.