pub struct User {
    pub email: String,
    pub ouath_id: String,
    pub is_teacher: bool,
    pub is_student: bool,
    pub is_admin: bool,
    pub teams: String,
    pub class: String,
    pub first_name: String,
    pub last_name: String,
}

Fields§

§email: String§ouath_id: String§is_teacher: bool§is_student: bool§is_admin: bool§teams: String§class: String§first_name: String§last_name: String

Trait Implementations§

The table which Self::Changeset will be updating
The update statement this type represents
Convert self into the actual update statement being executed
The table which Self::Changeset will be updating
The update statement this type represents
Convert self into the actual update statement being executed
Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
The Rust type you’d like to map from. Read more
Construct an instance of this type

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Convert self to an expression for Diesel’s query builder. Read more
Convert &self to an expression for Diesel’s query builder. Read more
The number of fields that this type will consume.
The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.