pub enum ParameterLocation {
Path,
Query,
Header,
Body,
}Expand description
Parameter location for conflict resolution
Indicates where a parameter is used in an HTTP request.
§Variants
Path: URL path segment parameter (e.g.,{id}in/users/{id})Query: Query string parameter (e.g.,?page=1&limit=10)Header: HTTP header parameter (e.g.,Authorization: Bearer ...)Body: Request body parameter (for POST/PUT/PATCH requests)
Variants§
Path
URL path segment parameter
Query
Query string parameter
Header
HTTP header parameter
Body
Request body parameter
Trait Implementations§
Source§impl Clone for ParameterLocation
impl Clone for ParameterLocation
Source§fn clone(&self) -> ParameterLocation
fn clone(&self) -> ParameterLocation
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 ParameterLocation
impl Debug for ParameterLocation
Source§impl<'de> Deserialize<'de> for ParameterLocation
impl<'de> Deserialize<'de> for ParameterLocation
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<ParameterIn> for ParameterLocation
impl From<ParameterIn> for ParameterLocation
Source§fn from(param_in: ParameterIn) -> Self
fn from(param_in: ParameterIn) -> Self
Converts to this type from the input type.
Source§impl Hash for ParameterLocation
impl Hash for ParameterLocation
Source§impl PartialEq for ParameterLocation
impl PartialEq for ParameterLocation
Source§impl Serialize for ParameterLocation
impl Serialize for ParameterLocation
impl Copy for ParameterLocation
impl Eq for ParameterLocation
impl StructuralPartialEq for ParameterLocation
Auto Trait Implementations§
impl Freeze for ParameterLocation
impl RefUnwindSafe for ParameterLocation
impl Send for ParameterLocation
impl Sync for ParameterLocation
impl Unpin for ParameterLocation
impl UnsafeUnpin for ParameterLocation
impl UnwindSafe for ParameterLocation
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.