pub struct Supabase { /* private fields */ }
Implementations§
Source§impl Supabase
impl Supabase
pub async fn jwt_valid(&self, jwt: &str) -> Result<Claims, Error>
pub async fn sign_in_password( &self, email: &str, password: &str, ) -> Result<Response, Error>
pub async fn refresh_token( &self, refresh_token: &str, ) -> Result<Response, Error>
pub async fn logout(&self) -> Result<Response, Error>
pub async fn signup_email_password( &self, email: &str, password: &str, ) -> Result<Response, Error>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Supabase
impl !RefUnwindSafe for Supabase
impl Send for Supabase
impl Sync for Supabase
impl Unpin for Supabase
impl !UnwindSafe for Supabase
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more