pub struct OpenApiPath {
pub path: String,
pub method: String,
pub operation: OpenApiOperation,
}Expand description
An OpenAPI path with its operations.
Fields§
§path: StringThe path pattern (e.g., “/users/{id}”).
method: StringHTTP method (lowercase: “get”, “post”, etc.).
operation: OpenApiOperationThe operation definition.
Implementations§
Source§impl OpenApiPath
impl OpenApiPath
Sourcepub fn new(path: impl Into<String>, method: impl Into<String>) -> OpenApiPath
pub fn new(path: impl Into<String>, method: impl Into<String>) -> OpenApiPath
Create a new path.
Sourcepub fn with_operation(self, operation: OpenApiOperation) -> OpenApiPath
pub fn with_operation(self, operation: OpenApiOperation) -> OpenApiPath
Set the operation for this path.
Trait Implementations§
Source§impl Clone for OpenApiPath
impl Clone for OpenApiPath
Source§fn clone(&self) -> OpenApiPath
fn clone(&self) -> OpenApiPath
Returns a duplicate of the value. Read more
1.0.0 · 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 OpenApiPath
impl Debug for OpenApiPath
Source§impl<'de> Deserialize<'de> for OpenApiPath
impl<'de> Deserialize<'de> for OpenApiPath
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<OpenApiPath, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<OpenApiPath, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for OpenApiPath
impl PartialEq for OpenApiPath
Source§impl Serialize for OpenApiPath
impl Serialize for OpenApiPath
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for OpenApiPath
Auto Trait Implementations§
impl Freeze for OpenApiPath
impl RefUnwindSafe for OpenApiPath
impl Send for OpenApiPath
impl Sync for OpenApiPath
impl Unpin for OpenApiPath
impl UnsafeUnpin for OpenApiPath
impl UnwindSafe for OpenApiPath
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