teo-result 0.3.5

Result library for Teo.
Documentation
1
2
3
4
5
6
7
use crate::Error;

impl From<multer::Error> for Error {
    fn from(value: multer::Error) -> Self {
        Error::invalid_request_message(format!("multipart/form-data error: {}", value.to_string()))
    }
}