pub enum ParametersItems {
Request(Request),
SimpleResponse(SimpleResponse),
Exceptions(Exceptions),
}Expand description
A child item of the
Variants§
Request(Request)
Request tag
SimpleResponse(SimpleResponse)
SimpleResponse tag
Exceptions(Exceptions)
Exceptions tag
Trait Implementations§
Source§impl Clone for ParametersItems
impl Clone for ParametersItems
Source§fn clone(&self) -> ParametersItems
fn clone(&self) -> ParametersItems
Returns a copy 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 ParametersItems
impl Debug for ParametersItems
Source§impl<'de> Deserialize<'de> for ParametersItems
impl<'de> Deserialize<'de> for ParametersItems
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 ParametersItems
impl PartialEq for ParametersItems
Source§impl Serialize for ParametersItems
impl Serialize for ParametersItems
impl Eq for ParametersItems
impl StructuralPartialEq for ParametersItems
Auto Trait Implementations§
impl Freeze for ParametersItems
impl RefUnwindSafe for ParametersItems
impl Send for ParametersItems
impl Sync for ParametersItems
impl Unpin for ParametersItems
impl UnwindSafe for ParametersItems
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