pub struct CreateUnexpectedProblemResponse {
pub errors: Option<Vec<Error>>,
}
Expand description
CreateUnexpectedProblemResponse : The response schema for the createUnexpectedProblem operation.
Fields§
§errors: Option<Vec<Error>>
A list of error responses returned when a request is unsuccessful.
Implementations§
Source§impl CreateUnexpectedProblemResponse
impl CreateUnexpectedProblemResponse
Sourcepub fn new() -> CreateUnexpectedProblemResponse
pub fn new() -> CreateUnexpectedProblemResponse
The response schema for the createUnexpectedProblem operation.
Trait Implementations§
Source§impl Clone for CreateUnexpectedProblemResponse
impl Clone for CreateUnexpectedProblemResponse
Source§fn clone(&self) -> CreateUnexpectedProblemResponse
fn clone(&self) -> CreateUnexpectedProblemResponse
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 Default for CreateUnexpectedProblemResponse
impl Default for CreateUnexpectedProblemResponse
Source§fn default() -> CreateUnexpectedProblemResponse
fn default() -> CreateUnexpectedProblemResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateUnexpectedProblemResponse
impl<'de> Deserialize<'de> for CreateUnexpectedProblemResponse
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 CreateUnexpectedProblemResponse
impl PartialEq for CreateUnexpectedProblemResponse
Source§fn eq(&self, other: &CreateUnexpectedProblemResponse) -> bool
fn eq(&self, other: &CreateUnexpectedProblemResponse) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CreateUnexpectedProblemResponse
Auto Trait Implementations§
impl Freeze for CreateUnexpectedProblemResponse
impl RefUnwindSafe for CreateUnexpectedProblemResponse
impl Send for CreateUnexpectedProblemResponse
impl Sync for CreateUnexpectedProblemResponse
impl Unpin for CreateUnexpectedProblemResponse
impl UnwindSafe for CreateUnexpectedProblemResponse
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