srv/
problem.rs

1
2
3
4
5
6
use problem_details::ProblemDetails;

#[derive(Debug)]
pub struct Problem(pub ProblemDetails);

impl warp::reject::Reject for Problem {}