pub struct QueryParam {
pub key: Option<String>,
pub value: Option<String>,
pub description: Option<String>,
pub disabled: bool,
}Expand description
Query parameter
Fields§
§key: Option<String>Parameter key
value: Option<String>Parameter value
description: Option<String>Optional parameter description
disabled: boolWhether this parameter is disabled
Trait Implementations§
Source§impl Debug for QueryParam
impl Debug for QueryParam
Source§impl<'de> Deserialize<'de> for QueryParam
impl<'de> Deserialize<'de> for QueryParam
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
Auto Trait Implementations§
impl Freeze for QueryParam
impl RefUnwindSafe for QueryParam
impl Send for QueryParam
impl Sync for QueryParam
impl Unpin for QueryParam
impl UnsafeUnpin for QueryParam
impl UnwindSafe for QueryParam
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