1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
use serde::Serialize;
pub trait BodyInner {}
#[derive(Clone, Debug, Serialize)]
pub struct SuccessBody<T: BodyInner> {
pub data: T,
}
impl<T: BodyInner> SuccessBody<T> {
pub fn new(data: T) -> Self {
Self { data }
}
}
#[derive(Clone, Debug, Serialize)]
pub struct ErrorBody<T: BodyInner> {
pub error: T,
}
impl<T: BodyInner> ErrorBody<T> {
pub fn new(error: T) -> Self {
Self { error }
}
}
#[derive(Clone, Debug, Serialize)]
pub struct DefaultErrorResponse {
pub code: String,
pub message: String,
}
impl BodyInner for DefaultErrorResponse {}