dragonfly-api 2.0.133

Canonical location of the Dragonfly API definition
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/// Backend is error detail for Backend.
#[derive(serde::Serialize, serde::Deserialize)]
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Backend {
    /// Backend error message.
    #[prost(string, tag = "1")]
    pub message: ::prost::alloc::string::String,
    /// Backend HTTP response header.
    #[prost(map = "string, string", tag = "2")]
    pub header: ::std::collections::HashMap<
        ::prost::alloc::string::String,
        ::prost::alloc::string::String,
    >,
    /// Backend HTTP status code.
    #[prost(int32, tag = "3")]
    pub status_code: i32,
}