pub enum SentcError {
Sdk(SdkLightError),
TimeError,
JsonToStringFailed,
JsonParseFailed(Error),
UsernameOrPasswordRequired,
UserMfaRequired,
}Variants§
Sdk(SdkLightError)
TimeError
JsonToStringFailed
JsonParseFailed(Error)
UsernameOrPasswordRequired
UserMfaRequired
Trait Implementations§
Source§impl Debug for SentcError
impl Debug for SentcError
Source§impl From<Error> for SentcError
impl From<Error> for SentcError
Source§impl From<Error> for SentcError
impl From<Error> for SentcError
Source§impl From<SdkLightError> for SentcError
impl From<SdkLightError> for SentcError
Source§fn from(value: SdkLightError) -> Self
fn from(value: SdkLightError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SentcError
impl RefUnwindSafe for SentcError
impl Send for SentcError
impl Sync for SentcError
impl Unpin for SentcError
impl UnwindSafe for SentcError
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