pub struct ApiErrorEmbedded {
pub api_errors: Vec<ApiError>,
}
Expand description
Embedded API errors
Fields§
§api_errors: Vec<ApiError>
Trait Implementations§
Source§impl Clone for ApiErrorEmbedded
impl Clone for ApiErrorEmbedded
Source§fn clone(&self) -> ApiErrorEmbedded
fn clone(&self) -> ApiErrorEmbedded
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 ApiErrorEmbedded
impl Debug for ApiErrorEmbedded
Source§impl<'de> Deserialize<'de> for ApiErrorEmbedded
impl<'de> Deserialize<'de> for ApiErrorEmbedded
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
Auto Trait Implementations§
impl Freeze for ApiErrorEmbedded
impl RefUnwindSafe for ApiErrorEmbedded
impl Send for ApiErrorEmbedded
impl Sync for ApiErrorEmbedded
impl Unpin for ApiErrorEmbedded
impl UnwindSafe for ApiErrorEmbedded
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