[][src]Struct sn0int::models::NetworkDeviceUpdate

pub struct NetworkDeviceUpdate {
    pub id: i32,
    pub ipaddr: Option<String>,
    pub last_seen: Option<NaiveDateTime>,
}

Fields

id: i32ipaddr: Option<String>last_seen: Option<NaiveDateTime>

Trait Implementations

impl Upsert for NetworkDeviceUpdate[src]

impl Updateable<NetworkDevice> for NetworkDeviceUpdate[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 NetworkDeviceUpdate[src]

impl HasTable for NetworkDeviceUpdate[src]

type Table = table

The table this type is associated with.

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

type Id = &'ident i32

The type of this struct's identifier. Read more

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

type Target = table

The table which Self::Changeset will be updating

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

The update statement this type represents

impl<'update> AsChangeset for NetworkDeviceUpdate[src]

type Target = table

The table which Self::Changeset will be updating

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

The update statement this type represents

impl Serialize for NetworkDeviceUpdate[src]

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

Auto Trait Implementations

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

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.