[][src]Struct sn0int::models::NewBreachEmail

pub struct NewBreachEmail {
    pub breach_id: i32,
    pub email_id: i32,
    pub password: Option<String>,
}

Fields

breach_id: i32email_id: i32password: Option<String>

Trait Implementations

impl Clone for NewBreachEmail[src]

impl Debug for NewBreachEmail[src]

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

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

type Values = <(Option<Eq<breach_id, i32>>, Option<Eq<email_id, i32>>, Option<Eq<password, String>>) as Insertable<table>>::Values

The VALUES clause to insert these records Read more

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

type Values = <(Option<Eq<breach_id, &'insert i32>>, Option<Eq<email_id, &'insert i32>>, Option<Eq<password, &'insert String>>) as Insertable<table>>::Values

The VALUES clause to insert these records Read more

impl Printable<PrintableBreachEmail> for NewBreachEmail[src]

impl Serialize for NewBreachEmail[src]

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

impl Upsertable<BreachEmail> for NewBreachEmail[src]

type Update = BreachEmailUpdate

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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

impl<T> IntoSql for T[src]

impl<T> LuaInsertToNew for T where
    T: InsertToNew
[src]

type Target = <T as InsertToNew>::Target

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> SetParameter for T

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<V, T> VZip<V> for T where
    V: MultiLane<T>,