[][src]Struct sn0int::models::InsertPhoneNumber

pub struct InsertPhoneNumber {
    pub value: String,
    pub name: Option<String>,
    pub valid: Option<bool>,
    pub last_online: Option<NaiveDateTime>,
    pub country: Option<String>,
    pub carrier: Option<String>,
    pub line: Option<String>,
    pub is_ported: Option<bool>,
    pub last_ported: Option<NaiveDateTime>,
    pub caller_name: Option<String>,
    pub caller_type: Option<String>,
}

Fields

value: Stringname: Option<String>valid: Option<bool>last_online: Option<NaiveDateTime>country: Option<String>carrier: Option<String>line: Option<String>is_ported: Option<bool>last_ported: Option<NaiveDateTime>caller_name: Option<String>caller_type: Option<String>

Trait Implementations

impl Debug for InsertPhoneNumber[src]

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

impl InsertToNew for InsertPhoneNumber[src]

impl Serialize for InsertPhoneNumber[src]

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, 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>,