[][src]Struct sn0int::db::ttl::Ttl

pub struct Ttl {
    pub id: i32,
    pub family: String,
    pub key: i32,
    pub expire: NaiveDateTime,
}

Fields

id: i32family: Stringkey: i32expire: NaiveDateTime

Methods

impl Ttl[src]

pub fn new(obj: &Insert, key: i32, expire: NaiveDateTime) -> NewTtl[src]

pub fn find(obj: &Insert, my_key: i32, db: &Database) -> Result<Option<Ttl>>[src]

pub fn expired(db: &Database) -> Result<Vec<Ttl>>[src]

pub fn create(obj: &Insert, key: i32, ttl: i32, db: &Database) -> Result<()>[src]

pub fn bump(obj: &Insert, my_key: i32, ttl: i32, db: &Database) -> Result<()>[src]

pub fn delete(&self, db: &Database) -> Result<()>[src]

Trait Implementations

impl PartialEq<Ttl> for Ttl[src]

impl Debug for Ttl[src]

impl<__DB: Backend, __ST> Queryable<__ST, __DB> for Ttl where
    (i32, String, i32, NaiveDateTime): Queryable<__ST, __DB>, 
[src]

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

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

impl HasTable for Ttl[src]

type Table = table

The table this type is associated with.

impl<'ident> Identifiable for &'ident Ttl[src]

type Id = &'ident i32

The type of this struct's identifier. Read more

impl<'update> AsChangeset for &'update Ttl[src]

type Target = table

The table which Self::Changeset will be updating

type Changeset = <(Eq<family, &'update String>, Eq<key, &'update i32>, Eq<expire, &'update NaiveDateTime>) as AsChangeset>::Changeset

The update statement this type represents

impl<'update> AsChangeset for Ttl[src]

type Target = table

The table which Self::Changeset will be updating

type Changeset = <(Eq<family, String>, Eq<key, i32>, Eq<expire, NaiveDateTime>) as AsChangeset>::Changeset

The update statement this type represents

Auto Trait Implementations

impl Send for Ttl

impl Sync for Ttl

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto 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> IntoSql for T[src]

fn into_sql<T>(self) -> Self::Expression where
    Self: AsExpression<T>, 
[src]

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

fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expression where
    &'a Self: AsExpression<T>, 
[src]

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self

impl<T> SetParameter for T

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 

Sets value as a parameter of self.