bfile/filed/src/web/rejection.rs

7 lines
144 B
Rust
Raw Normal View History

2023-10-01 04:05:08 +02:00
#[derive(Debug)]
pub enum HttpReject {
WarpError(warp::Error),
AskamaError(askama::Error)
}
impl warp::reject::Reject for HttpReject {}