#[non_exhaustive]pub struct Responses {
pub responses: Map<String, MaybeRef<Response>>,
pub extensions: Extensions,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.responses: Map<String, MaybeRef<Response>>§extensions: ExtensionsImplementations§
Source§impl Responses
impl Responses
pub fn with_responses( self, value: impl Into<Map<String, MaybeRef<Response>>>, ) -> Self
pub fn with_responses_entry( self, key: impl Into<String>, value: impl Into<MaybeRef<Response>>, ) -> Self
pub fn with_extensions(self, value: impl Into<Extensions>) -> Self
pub fn with_extension( self, key: impl Into<String>, value: impl Into<Value>, ) -> Self
pub fn insert_extension( &mut self, key: impl Into<String>, value: impl Into<Value>, ) -> Option<Value>
Source§impl Responses
impl Responses
pub fn is_empty(&self) -> bool
pub fn merge_with(&mut self, other: Responses)
pub fn merge_iter(iter: impl IntoIterator<Item = Self>) -> Option<Self>
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Responses
impl<'de> Deserialize<'de> for Responses
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
impl Eq for Responses
impl StructuralPartialEq for Responses
Auto Trait Implementations§
impl Freeze for Responses
impl RefUnwindSafe for Responses
impl Send for Responses
impl Sync for Responses
impl Unpin for Responses
impl UnsafeUnpin for Responses
impl UnwindSafe for Responses
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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
Compare self to
key and return true if they are equal.