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
#[allow(unused_imports)]
use serde_json::Value;

#[derive(Debug, Serialize, Deserialize)]
pub struct DebugStatsHandler {
    /// Per-method statistics.
    #[serde(rename = "DELETE")]
    pub delete: Option <crate::models::DebugStatsUnknown>,
    /// Per-method statistics.
    #[serde(rename = "GET")]
    pub get: Option <crate::models::DebugStatsUnknown>,
    /// Per-method statistics.
    #[serde(rename = "HEAD")]
    pub head: Option <crate::models::DebugStatsUnknown>,
    /// Per-method statistics.
    #[serde(rename = "POST")]
    pub post: Option <crate::models::DebugStatsUnknown>,
    /// Per-method statistics.
    #[serde(rename = "PUT")]
    pub put: Option <crate::models::DebugStatsUnknown>,
    /// Per-method statistics.
    #[serde(rename = "UNSUPPORTED")]
    pub unsupported: Option <crate::models::DebugStatsUnknown>,
    /// The URI.
    #[serde(rename = "name")]
    pub name: Option<String>,
}