openapi-tui 0.10.2

This TUI allows you to list and browse APIs described by the openapi specification.
1
2
3
4
5
6
7
pub struct Response {
  pub status: reqwest::StatusCode,
  pub version: reqwest::Version,
  pub headers: reqwest::header::HeaderMap,
  pub content_length: Option<u64>,
  pub body: String,
}