openapi-nexus 0.1.4

OpenAPI 3.x multi-language code generator
Documentation
1
2
3
4
5
6
7
use std::collections::BTreeMap;

use serde::{Deserialize, Serialize};

/// Lists the required security schemes to execute this operation.
#[derive(Debug, Clone, PartialEq, Deserialize, Serialize)]
pub struct SecurityRequirement(pub BTreeMap<String, Vec<String>>);