pub struct ParsedSpec {
pub openapi: OpenAPI,
pub modules: Vec<String>,
pub operations_by_tag: HashMap<String, Vec<OperationInfo>>,
pub schemas: HashMap<String, Schema>,
pub module_schemas: HashMap<String, Vec<String>>,
pub common_schemas: Vec<String>,
}Fields§
§openapi: OpenAPI§modules: Vec<String>§operations_by_tag: HashMap<String, Vec<OperationInfo>>§schemas: HashMap<String, Schema>§module_schemas: HashMap<String, Vec<String>>§common_schemas: Vec<String>Auto Trait Implementations§
impl Freeze for ParsedSpec
impl RefUnwindSafe for ParsedSpec
impl Send for ParsedSpec
impl Sync for ParsedSpec
impl Unpin for ParsedSpec
impl UnwindSafe for ParsedSpec
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more