go_true 0.1.1

GoTrue client written in rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
use serde::Deserialize;

#[derive(Debug, Deserialize)]
pub struct UserUpdate {
    pub id: String,
    pub email: String,
    pub new_email: String,
    pub email_change_sent_at: String,
    pub created_at: String,
    pub updated_at: String,
}