8 lines
180 B
Rust
8 lines
180 B
Rust
use axum::body::Body;
|
|
use axum::http::Request;
|
|
use serde::Serialize;
|
|
|
|
pub trait BuildJson {
|
|
fn json<T: Serialize>(self, body: T) -> Result<Request<Body>, axum::http::Error>;
|
|
}
|