[][src]Struct sn0int::models::SubdomainUpdate

pub struct SubdomainUpdate {
    pub id: i32,
    pub resolvable: Option<bool>,
}

Fields

id: i32resolvable: Option<bool>

Trait Implementations

impl Upsert for SubdomainUpdate[src]

impl Updateable<Subdomain> for SubdomainUpdate[src]

impl Debug for SubdomainUpdate[src]

impl HasTable for SubdomainUpdate[src]

type Table = table

The table this type is associated with.

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

type Id = &'ident i32

The type of this struct's identifier. Read more

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

type Target = table

The table which Self::Changeset will be updating

type Changeset = <(Option<Eq<resolvable, &'update bool>>,) as AsChangeset>::Changeset

The update statement this type represents

impl<'update> AsChangeset for SubdomainUpdate[src]

type Target = table

The table which Self::Changeset will be updating

type Changeset = <(Option<Eq<resolvable, bool>>,) as AsChangeset>::Changeset

The update statement this type represents

impl Serialize for SubdomainUpdate[src]

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

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> 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> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<T> IntoSql for T[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> SetParameter for T