pub enum SupabaseClientError {
JwtStreamClosedUnexpectedly,
RefreshStreamError(RefreshStreamError),
AuthSignInError(SignInError),
UrlParseError(ParseError),
AuthError(AuthError),
}Variants§
JwtStreamClosedUnexpectedly
RefreshStreamError(RefreshStreamError)
AuthSignInError(SignInError)
UrlParseError(ParseError)
AuthError(AuthError)
Trait Implementations§
Source§impl Debug for SupabaseClientError
impl Debug for SupabaseClientError
Source§impl Display for SupabaseClientError
impl Display for SupabaseClientError
Source§impl Error for SupabaseClientError
impl Error for SupabaseClientError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<AuthError> for SupabaseClientError
impl From<AuthError> for SupabaseClientError
Source§impl From<ParseError> for SupabaseClientError
impl From<ParseError> for SupabaseClientError
Source§fn from(source: ParseError) -> Self
fn from(source: ParseError) -> Self
Converts to this type from the input type.
Source§impl From<RefreshStreamError> for SupabaseClientError
impl From<RefreshStreamError> for SupabaseClientError
Source§fn from(source: RefreshStreamError) -> Self
fn from(source: RefreshStreamError) -> Self
Converts to this type from the input type.
Source§impl From<SignInError> for SupabaseClientError
impl From<SignInError> for SupabaseClientError
Source§fn from(source: SignInError) -> Self
fn from(source: SignInError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SupabaseClientError
impl !RefUnwindSafe for SupabaseClientError
impl Send for SupabaseClientError
impl Sync for SupabaseClientError
impl Unpin for SupabaseClientError
impl !UnwindSafe for SupabaseClientError
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more