[][src]Struct sn0int::models::DeviceUpdate

pub struct DeviceUpdate {
    pub id: i32,
    pub name: Option<String>,
    pub hostname: Option<String>,
    pub vendor: Option<String>,
    pub last_seen: Option<NaiveDateTime>,
}

Fields

id: i32name: Option<String>hostname: Option<String>vendor: Option<String>last_seen: Option<NaiveDateTime>

Trait Implementations

impl Upsert for DeviceUpdate
[src]

impl Updateable<Device> for DeviceUpdate
[src]

fn to_string(&self) -> String
[src]

fn clear_if_equal<T: PartialEq>(update: &mut Option<T>, existing: &Option<T>)
[src]

fn push_value<D: Debug>(
    updates: &mut Vec<String>,
    name: &str,
    value: &Option<D>
)
[src]

fn push_raw<T: AsRef<str>>(
    updates: &mut Vec<String>,
    name: &str,
    value: Option<T>
)
[src]

impl Debug for DeviceUpdate
[src]

impl HasTable for DeviceUpdate
[src]

type Table = table

The table this type is associated with.

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

type Id = &'ident i32

The type of this struct's identifier. Read more

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

type Target = table

The table which Self::Changeset will be updating

type Changeset = <(Option<Eq<name, &'update String>>, Option<Eq<hostname, &'update String>>, Option<Eq<vendor, &'update String>>, Option<Eq<last_seen, &'update NaiveDateTime>>) as AsChangeset>::Changeset

The update statement this type represents

impl<'update> AsChangeset for DeviceUpdate
[src]

type Target = table

The table which Self::Changeset will be updating

type Changeset = <(Option<Eq<name, String>>, Option<Eq<hostname, String>>, Option<Eq<vendor, String>>, Option<Eq<last_seen, NaiveDateTime>>) as AsChangeset>::Changeset

The update statement this type represents

impl Serialize for DeviceUpdate
[src]

impl<'de> Deserialize<'de> for DeviceUpdate
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T