Struct rocket_auth::Users[][src]

pub struct Users { /* fields omitted */ }

The Users struct is used to query users from the database, as well as to create, modify and delete them.

Implementations

impl Users[src]

pub fn get_by_id(&self, user_id: u32) -> Result<User, Error>[src]

pub fn get_by_email(&self, email: &str) -> Result<User, Error>[src]

It querys a user by their email. #[get(“/user-information/”)] fn user_information(email: String) -> String {

}

pub fn create_user(
    &self,
    email: &str,
    password: &str,
    is_admin: bool
) -> Result<(), Error>
[src]

Inserts a user in the database.

Example

#[get("/create_admin/<email>/<pasword>")]
fn create_admin(email: String, password: String, users: State<Users>) -> Result<String> {
    users.create_user(email, password, true)?;
    Ok("User created successfully")
}

pub fn delete(&self, id: u32) -> Result<(), Error>[src]

Deletes a user from de database. Note that this method won’t delete the session. To do that use [Auth::delete]. #[get(“/delete_user/”)] fn delete_user(id: u32, users: State) -> Result { users.delete(id)?; Ok(“The user has been deleted.”) }

pub fn modify(&self, user: User) -> Result<(), Error>[src]

Auto Trait Implementations

impl !RefUnwindSafe for Users

impl Send for Users

impl Sync for Users

impl Unpin for Users

impl !UnwindSafe for Users

Blanket Implementations

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

impl<T, I> AsResult<T, I> for T where
    I: Input, 

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

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

impl<T> Erased for T

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

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

impl<T> IntoCollection<T> for T

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<T> Typeable for T where
    T: Any

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,