pub enum FlaskError {
BadRequest(String),
ClientClosedRequest(String),
InternalServerError(String),
BadGateway(String),
NotImplemented(String),
}
Variants§
BadRequest(String)
ClientClosedRequest(String)
InternalServerError(String)
BadGateway(String)
NotImplemented(String)
Implementations§
Trait Implementations§
Source§impl Debug for FlaskError
impl Debug for FlaskError
Auto Trait Implementations§
impl Freeze for FlaskError
impl RefUnwindSafe for FlaskError
impl Send for FlaskError
impl Sync for FlaskError
impl Unpin for FlaskError
impl UnwindSafe for FlaskError
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