Enum mendes::application::Error
source · pub enum Error {
Show 15 variants
MethodNotAllowed,
PathNotFound,
PathComponentMissing,
PathParse,
PathDecode,
QueryMissing,
QueryDecode(Error),
BodyReceive(Box<dyn StdError + Send + Sync + 'static>),
BodyTooLarge,
BodyDecodeJson(Error),
BodyDecodeForm(Error),
BodyDecodeMultipart(Error),
BodyUnknownType(String),
BodyNoType,
FileNotFound,
}Available on crate feature
application only.Variants§
MethodNotAllowed
PathNotFound
PathComponentMissing
PathParse
PathDecode
QueryMissing
QueryDecode(Error)
BodyReceive(Box<dyn StdError + Send + Sync + 'static>)
BodyTooLarge
BodyDecodeJson(Error)
BodyDecodeForm(Error)
BodyDecodeMultipart(Error)
BodyUnknownType(String)
BodyNoType
FileNotFound
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)>
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<&Error> for StatusCode
impl From<&Error> for StatusCode
source§fn from(e: &Error) -> StatusCode
fn from(e: &Error) -> StatusCode
Converts to this type from the input type.