[][src]Struct sn0int::models::NewSubdomain

pub struct NewSubdomain {
    pub domain_id: i32,
    pub value: String,
    pub resolvable: Option<bool>,
    pub unscoped: bool,
}

Fields

domain_id: i32value: Stringresolvable: Option<bool>unscoped: bool

Trait Implementations

impl AutoRule<NewSubdomain> for DomainRule[src]

impl InsertableStruct<Subdomain> for NewSubdomain[src]

impl Upsertable<Subdomain> for NewSubdomain[src]

type Update = SubdomainUpdate

impl Printable<PrintableSubdomain> for NewSubdomain[src]

impl Clone for NewSubdomain[src]

impl Debug for NewSubdomain[src]

impl<'insert> Insertable<table> for NewSubdomain[src]

type Values = <(Option<Eq<domain_id, i32>>, Option<Eq<value, String>>, Option<Eq<resolvable, bool>>, Option<Eq<unscoped, bool>>) as Insertable<table>>::Values

The VALUES clause to insert these records Read more

impl<'insert> Insertable<table> for &'insert NewSubdomain[src]

type Values = <(Option<Eq<domain_id, &'insert i32>>, Option<Eq<value, &'insert String>>, Option<Eq<resolvable, &'insert bool>>, Option<Eq<unscoped, &'insert bool>>) as Insertable<table>>::Values

The VALUES clause to insert these records Read more

impl<'insert> UndecoratedInsertRecord<table> for NewSubdomain[src]

impl Serialize for NewSubdomain[src]

impl<'de> Deserialize<'de> for NewSubdomain[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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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