pub struct OpenApiPathItem {
pub operations: BTreeMap<String, OpenApiOperation>,
}Expand description
OpenAPI path item containing operations keyed by HTTP method.
Fields§
§operations: BTreeMap<String, OpenApiOperation>Trait Implementations§
Source§impl Clone for OpenApiPathItem
impl Clone for OpenApiPathItem
Source§fn clone(&self) -> OpenApiPathItem
fn clone(&self) -> OpenApiPathItem
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for OpenApiPathItem
impl Debug for OpenApiPathItem
Source§impl Default for OpenApiPathItem
impl Default for OpenApiPathItem
Source§fn default() -> OpenApiPathItem
fn default() -> OpenApiPathItem
Returns the “default value” for a type. Read more
Source§impl PartialEq for OpenApiPathItem
impl PartialEq for OpenApiPathItem
Source§impl Serialize for OpenApiPathItem
impl Serialize for OpenApiPathItem
impl StructuralPartialEq for OpenApiPathItem
Auto Trait Implementations§
impl Freeze for OpenApiPathItem
impl RefUnwindSafe for OpenApiPathItem
impl Send for OpenApiPathItem
impl Sync for OpenApiPathItem
impl Unpin for OpenApiPathItem
impl UnsafeUnpin for OpenApiPathItem
impl UnwindSafe for OpenApiPathItem
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