pub struct ApiParameters {
pub path_params: Vec<ApiParameter>,
pub query_params: Vec<ApiParameter>,
pub body_params: Option<ApiBodySchema>,
pub headers: Vec<ApiParameter>,
}
Fields§
§path_params: Vec<ApiParameter>
§query_params: Vec<ApiParameter>
§body_params: Option<ApiBodySchema>
§headers: Vec<ApiParameter>
Trait Implementations§
Source§impl Clone for ApiParameters
impl Clone for ApiParameters
Source§fn clone(&self) -> ApiParameters
fn clone(&self) -> ApiParameters
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 ApiParameters
impl Debug for ApiParameters
Source§impl<'de> Deserialize<'de> for ApiParameters
impl<'de> Deserialize<'de> for ApiParameters
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 ApiParameters
impl PartialEq for ApiParameters
Source§impl Serialize for ApiParameters
impl Serialize for ApiParameters
impl StructuralPartialEq for ApiParameters
Auto Trait Implementations§
impl Freeze for ApiParameters
impl RefUnwindSafe for ApiParameters
impl Send for ApiParameters
impl Sync for ApiParameters
impl Unpin for ApiParameters
impl UnwindSafe for ApiParameters
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