Struct got_ya_id::apps::profiles::models::UpdtProfile[][src]

pub struct UpdtProfile<'a> { /* fields omitted */ }

Updatable profile object

Trait Implementations

impl<'a, 'update> AsChangeset for &'update UpdtProfile<'a>[src]

type Target = table

The table which Self::Changeset will be updating

type Changeset = <(Option<Eq<phone, &'update Cow<'a, str>>>, Option<Eq<name, &'update Cow<'a, str>>>, Option<Eq<institution, &'update Cow<'a, str>>>, Option<Eq<about, &'update Cow<'a, str>>>) as AsChangeset>::Changeset

The update statement this type represents

impl<'a, 'update> AsChangeset for UpdtProfile<'a>[src]

type Target = table

The table which Self::Changeset will be updating

type Changeset = <(Option<Eq<phone, Cow<'a, str>>>, Option<Eq<name, Cow<'a, str>>>, Option<Eq<institution, Cow<'a, str>>>, Option<Eq<about, Cow<'a, str>>>) as AsChangeset>::Changeset

The update statement this type represents

impl<'de, 'a> Deserialize<'de> for UpdtProfile<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for UpdtProfile<'a>

impl<'a> Send for UpdtProfile<'a>

impl<'a> Sync for UpdtProfile<'a>

impl<'a> Unpin for UpdtProfile<'a>

impl<'a> UnwindSafe for UpdtProfile<'a>

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: for<'de> Deserialize<'de>, 
[src]

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

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

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

impl<T, U> IntoPy<U> for T where
    U: FromPy<T>, 
[src]

impl<T> IntoSql for T[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

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