Enum utoipa::openapi::path::ParameterStyle
source · pub enum ParameterStyle {
Matrix,
Label,
Form,
Simple,
SpaceDelimited,
PipeDelimited,
DeepObject,
}
Expand description
Defines how Parameter
should be serialized.
Variants§
Matrix
Path style parameters defined by RFC6570
e.g ;color=blue
.
Allowed with ParameterIn::Path
.
Label
Label style parameters defined by RFC6570
e.g .color=blue
.
Allowed with ParameterIn::Path
.
Form
Form style parameters defined by RFC6570
e.g. color=blue
. Default value for ParameterIn::Query
ParameterIn::Cookie
.
Allowed with ParameterIn::Query
or ParameterIn::Cookie
.
Simple
Default value for ParameterIn::Path
ParameterIn::Header
. e.g. blue
.
Allowed with ParameterIn::Path
or ParameterIn::Header
.
SpaceDelimited
Space separated array values e.g. blue%20black%20brown
.
Allowed with ParameterIn::Query
.
PipeDelimited
Pipe separated array values e.g. blue|black|brown
.
Allowed with ParameterIn::Query
.
DeepObject
Simple way of rendering nested objects using form parameters .e.g. color[B]=150
.
Allowed with ParameterIn::Query
.
Trait Implementations§
source§impl Clone for ParameterStyle
impl Clone for ParameterStyle
source§fn clone(&self) -> ParameterStyle
fn clone(&self) -> ParameterStyle
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl<'de> Deserialize<'de> for ParameterStyle
impl<'de> Deserialize<'de> for ParameterStyle
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>,
source§impl PartialEq for ParameterStyle
impl PartialEq for ParameterStyle
source§fn eq(&self, other: &ParameterStyle) -> bool
fn eq(&self, other: &ParameterStyle) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for ParameterStyle
impl Serialize for ParameterStyle
impl Eq for ParameterStyle
impl StructuralPartialEq for ParameterStyle
Auto Trait Implementations§
impl Freeze for ParameterStyle
impl RefUnwindSafe for ParameterStyle
impl Send for ParameterStyle
impl Sync for ParameterStyle
impl Unpin for ParameterStyle
impl UnwindSafe for ParameterStyle
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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
key
and return true
if they are equal.