pub struct OciErrorBody {
pub errors: Vec<OciErrorInfo>,
}Expand description
Top-level JSON response body for an error.
Spec §3.1: {"errors": [...]}.
Fields§
§errors: Vec<OciErrorInfo>Errors, non-empty.
Trait Implementations§
Source§impl Clone for OciErrorBody
impl Clone for OciErrorBody
Source§fn clone(&self) -> OciErrorBody
fn clone(&self) -> OciErrorBody
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 OciErrorBody
impl Debug for OciErrorBody
Source§impl<'de> Deserialize<'de> for OciErrorBody
impl<'de> Deserialize<'de> for OciErrorBody
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 OciErrorBody
impl RefUnwindSafe for OciErrorBody
impl Send for OciErrorBody
impl Sync for OciErrorBody
impl Unpin for OciErrorBody
impl UnsafeUnpin for OciErrorBody
impl UnwindSafe for OciErrorBody
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