pub enum Error {
Show 23 variants
Decode(String),
RwLockReadError(String),
RwLockWriteError(String),
MutexError(String),
RecvError(RecvError),
BadRequest,
Exists(Cow<'static, str>),
Str(Cow<'static, str>),
String(String),
Regex(Error),
Unauthorized(&'static str),
Forbidden,
NotFound(Cow<'static, str>),
Option(Cow<'static, str>),
Unsupport(Cow<'static, str>),
TryFromSlice(TryFromSliceError),
Env(VarError),
Empty,
ParseNumber(ParseIntError),
ParseFloatError(ParseFloatError),
Log(Cow<'static, str>),
Nul(NulError),
Any(String),
}Expand description
Http share error
Variants§
Decode(String)
Decode
RwLockReadError(String)
RwLock read lock error
RwLockWriteError(String)
RwLock write lock error
MutexError(String)
Mutex lock error
RecvError(RecvError)
MPSC Recv Error
BadRequest
BadRequest 400 Bad Request
Exists(Cow<'static, str>)
Already exists
Str(Cow<'static, str>)
SerdeJson 400 Bad Request
Result 400 Bad Request
String(String)
Regex(Error)
Excel 400 Bad Request
Return 401 Unauthorized
Forbidden
Return 403 Forbidden
NotFound(Cow<'static, str>)
Return 404 Not Found
Option(Cow<'static, str>)
Return 404 Not Found
Unsupport(Cow<'static, str>)
Not supported
TryFromSlice(TryFromSliceError)
Env(VarError)
Env
Empty
ParseNumber(ParseIntError)
Parse int error return 400
ParseFloatError(ParseFloatError)
Parse float error return 400
Log(Cow<'static, str>)
Return 502 Internal Server Error on an anyhow::Error.
Nul(NulError)
Nul
Any(String)
Any
Trait Implementations§
Source§impl Error for Error
impl Error for Error
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 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<ParseFloatError> for Error
impl From<ParseFloatError> for Error
Source§fn from(source: ParseFloatError) -> Self
fn from(source: ParseFloatError) -> Self
Converts to this type from the input type.
Source§impl From<ParseIntError> for Error
impl From<ParseIntError> for Error
Source§fn from(source: ParseIntError) -> Self
fn from(source: ParseIntError) -> Self
Converts to this type from the input type.
Source§impl<T: Send + Sync + 'static> From<PoisonError<MutexGuard<'_, T>>> for Error
impl<T: Send + Sync + 'static> From<PoisonError<MutexGuard<'_, T>>> for Error
Source§fn from(err: PoisonError<MutexGuard<'_, T>>) -> Self
fn from(err: PoisonError<MutexGuard<'_, T>>) -> Self
Converts to this type from the input type.
Source§impl<T: Send + Sync + 'static> From<PoisonError<RwLockReadGuard<'_, T>>> for Error
impl<T: Send + Sync + 'static> From<PoisonError<RwLockReadGuard<'_, T>>> for Error
Source§fn from(err: PoisonError<RwLockReadGuard<'_, T>>) -> Self
fn from(err: PoisonError<RwLockReadGuard<'_, T>>) -> Self
Converts to this type from the input type.
Source§impl<T: Send + Sync + 'static> From<PoisonError<RwLockWriteGuard<'_, T>>> for Error
impl<T: Send + Sync + 'static> From<PoisonError<RwLockWriteGuard<'_, T>>> for Error
Source§fn from(err: PoisonError<RwLockWriteGuard<'_, T>>) -> Self
fn from(err: PoisonError<RwLockWriteGuard<'_, T>>) -> Self
Converts to this type from the input type.
Source§impl From<TryFromSliceError> for Error
impl From<TryFromSliceError> for Error
Source§fn from(source: TryFromSliceError) -> Self
fn from(source: TryFromSliceError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for Error
impl RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl UnwindSafe for Error
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.Source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.