#[non_exhaustive]pub struct Responses {
pub responses: BTreeMap<String, RefOr<Response>>,
}
Expand description
Implements OpenAPI Responses Object.
Responses is a map holding api operation responses identified by their status code.
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: BTreeMap<String, RefOr<Response>>
Map containing status code as a key with represented response as a value.
Implementations§
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
source§impl From<Responses> for ResponsesBuilder
impl From<Responses> for ResponsesBuilder
source§impl From<ResponsesBuilder> for Responses
impl From<ResponsesBuilder> for Responses
source§fn from(value: ResponsesBuilder) -> Self
fn from(value: ResponsesBuilder) -> Self
Converts to this type from the input type.
source§impl<C, R> FromIterator<(C, R)> for Responseswhere
C: Into<String>,
R: Into<RefOr<Response>>,
impl<C, R> FromIterator<(C, R)> for Responseswhere C: Into<String>, R: Into<RefOr<Response>>,
source§impl PartialEq<Responses> for Responses
impl PartialEq<Responses> for Responses
impl StructuralPartialEq for Responses
Auto Trait Implementations§
impl RefUnwindSafe for Responses
impl Send for Responses
impl Sync for Responses
impl Unpin 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