Enum evento_query::CursorError
source · pub enum CursorError {
MissingField(String),
ChronoParseError(ParseError),
Sqlx(Error),
Base64(DecodeError),
StrUtf8(Utf8Error),
Harsh(Error),
Unknown(String, String, String),
}Variants§
MissingField(String)
ChronoParseError(ParseError)
Sqlx(Error)
Base64(DecodeError)
StrUtf8(Utf8Error)
Harsh(Error)
Unknown(String, String, String)
Trait Implementations§
source§impl Debug for CursorError
impl Debug for CursorError
source§impl Display for CursorError
impl Display for CursorError
source§impl Error for CursorError
impl Error for CursorError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<CursorError> for SubscirberHandlerError
impl From<CursorError> for SubscirberHandlerError
source§fn from(e: CursorError) -> Self
fn from(e: CursorError) -> Self
Converts to this type from the input type.
source§impl From<DecodeError> for CursorError
impl From<DecodeError> for CursorError
source§fn from(value: DecodeError) -> Self
fn from(value: DecodeError) -> Self
Converts to this type from the input type.
source§impl From<Error> for CursorError
impl From<Error> for CursorError
source§impl From<Error> for CursorError
impl From<Error> for CursorError
source§impl From<ParseError> for CursorError
impl From<ParseError> for CursorError
source§fn from(value: ParseError) -> Self
fn from(value: ParseError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for CursorError
impl Send for CursorError
impl Sync for CursorError
impl Unpin for CursorError
impl !UnwindSafe for CursorError
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