[][src]Struct sn0int::models::UrlUpdate

pub struct UrlUpdate {
    pub id: i32,
    pub status: Option<i32>,
    pub body: Option<Vec<u8>>,
    pub online: Option<bool>,
    pub title: Option<String>,
    pub redirect: Option<String>,
}

Fields

id: i32status: Option<i32>body: Option<Vec<u8>>online: Option<bool>title: Option<String>redirect: Option<String>

Trait Implementations

impl Upsert for UrlUpdate
[src]

impl Updateable<Url> for UrlUpdate
[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 UrlUpdate
[src]

impl HasTable for UrlUpdate
[src]

type Table = table

The table this type is associated with.

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

type Id = &'ident i32

The type of this struct's identifier. Read more

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

type Target = table

The table which Self::Changeset will be updating

type Changeset = <(Option<Eq<status, &'update i32>>, Option<Eq<body, &'update Vec<u8>>>, Option<Eq<online, &'update bool>>, Option<Eq<title, &'update String>>, Option<Eq<redirect, &'update String>>) as AsChangeset>::Changeset

The update statement this type represents

impl<'update> AsChangeset for UrlUpdate
[src]

type Target = table

The table which Self::Changeset will be updating

type Changeset = <(Option<Eq<status, i32>>, Option<Eq<body, Vec<u8>>>, Option<Eq<online, bool>>, Option<Eq<title, String>>, Option<Eq<redirect, String>>) as AsChangeset>::Changeset

The update statement this type represents

impl Serialize for UrlUpdate
[src]

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

Auto Trait Implementations

impl Send for UrlUpdate

impl Sync for UrlUpdate

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