#[non_exhaustive]pub struct HTTPCIAppErrors {
pub errors: Option<Vec<HTTPCIAppError>>,
pub additional_properties: BTreeMap<String, Value>,
/* private fields */
}
Expand description
Errors occurred.
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.errors: Option<Vec<HTTPCIAppError>>
Structured errors.
additional_properties: BTreeMap<String, Value>
Implementations§
Source§impl HTTPCIAppErrors
impl HTTPCIAppErrors
pub fn new() -> HTTPCIAppErrors
pub fn errors(self, value: Vec<HTTPCIAppError>) -> Self
pub fn additional_properties(self, value: BTreeMap<String, Value>) -> Self
Trait Implementations§
Source§impl Clone for HTTPCIAppErrors
impl Clone for HTTPCIAppErrors
Source§fn clone(&self) -> HTTPCIAppErrors
fn clone(&self) -> HTTPCIAppErrors
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 Debug for HTTPCIAppErrors
impl Debug for HTTPCIAppErrors
Source§impl Default for HTTPCIAppErrors
impl Default for HTTPCIAppErrors
Source§impl<'de> Deserialize<'de> for HTTPCIAppErrors
impl<'de> Deserialize<'de> for HTTPCIAppErrors
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 HTTPCIAppErrors
impl PartialEq for HTTPCIAppErrors
Source§impl Serialize for HTTPCIAppErrors
impl Serialize for HTTPCIAppErrors
impl StructuralPartialEq for HTTPCIAppErrors
Auto Trait Implementations§
impl Freeze for HTTPCIAppErrors
impl RefUnwindSafe for HTTPCIAppErrors
impl Send for HTTPCIAppErrors
impl Sync for HTTPCIAppErrors
impl Unpin for HTTPCIAppErrors
impl UnwindSafe for HTTPCIAppErrors
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