pub enum ParameterLocation {
Query,
Header,
Path,
FormData,
Body,
}
Available on crate feature
v2
only.Variants§
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 Default for ParameterLocation
impl Default 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 PartialEq for ParameterLocation
impl PartialEq for ParameterLocation
Source§impl Serialize for ParameterLocation
impl Serialize 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 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