[][src]Struct sn0int::models::NewCryptoAddr

pub struct NewCryptoAddr {
    pub value: String,
    pub currency: Option<String>,
    pub denominator: Option<i32>,
    pub balance: Option<i64>,
    pub received: Option<i64>,
    pub first_seen: Option<NaiveDateTime>,
    pub last_withdrawal: Option<NaiveDateTime>,
    pub unscoped: bool,
    pub description: Option<String>,
}

Fields

value: Stringcurrency: Option<String>denominator: Option<i32>balance: Option<i64>received: Option<i64>first_seen: Option<NaiveDateTime>last_withdrawal: Option<NaiveDateTime>unscoped: booldescription: Option<String>

Trait Implementations

impl Clone for NewCryptoAddr[src]

impl Debug for NewCryptoAddr[src]

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

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

type Values = <(Option<Eq<value, String>>, Option<Eq<currency, String>>, Option<Eq<denominator, i32>>, Option<Eq<balance, i64>>, Option<Eq<received, i64>>, Option<Eq<first_seen, NaiveDateTime>>, Option<Eq<last_withdrawal, NaiveDateTime>>, Option<Eq<unscoped, bool>>, Option<Eq<description, String>>) as Insertable<table>>::Values

The VALUES clause to insert these records Read more

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

type Values = <(Option<Eq<value, &'insert String>>, Option<Eq<currency, &'insert String>>, Option<Eq<denominator, &'insert i32>>, Option<Eq<balance, &'insert i64>>, Option<Eq<received, &'insert i64>>, Option<Eq<first_seen, &'insert NaiveDateTime>>, Option<Eq<last_withdrawal, &'insert NaiveDateTime>>, Option<Eq<unscoped, &'insert bool>>, Option<Eq<description, &'insert String>>) as Insertable<table>>::Values

The VALUES clause to insert these records Read more

impl InsertableStruct<CryptoAddr> for NewCryptoAddr[src]

impl Printable<PrintableCryptoAddr> for NewCryptoAddr[src]

impl Serialize for NewCryptoAddr[src]

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

impl Upsertable<CryptoAddr> for NewCryptoAddr[src]

type Update = CryptoAddrUpdate

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