pub struct InnerError {
pub code: Option<String>,
pub inner_error: Option<Box<InnerError>>,
}Available on crate feature
export-azure only.Expand description
Inner error information about an error returned from a service.
Implements a standard โInnerErrorโ as described in the API guidelines.
Fieldsยง
ยงcode: Option<String>A more specific error than was contained in the containing error.
inner_error: Option<Box<InnerError>>An object containing more specific information than the current object about the error.
Trait Implementationsยง
Sourceยงimpl Clone for InnerError
impl Clone for InnerError
Sourceยงfn clone(&self) -> InnerError
fn clone(&self) -> InnerError
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 InnerError
impl Debug for InnerError
Sourceยงimpl<'de> Deserialize<'de> for InnerError
impl<'de> Deserialize<'de> for InnerError
Sourceยงfn deserialize<__D>(
__deserializer: __D,
) -> Result<InnerError, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<InnerError, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Sourceยงimpl Serialize for InnerError
impl Serialize for InnerError
Sourceยงfn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementationsยง
impl Freeze for InnerError
impl RefUnwindSafe for InnerError
impl Send for InnerError
impl Sync for InnerError
impl Unpin for InnerError
impl UnsafeUnpin for InnerError
impl UnwindSafe for InnerError
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
Sourceยงimpl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Sourceยงimpl<D> DeserializeWith<JsonFormat> for Dwhere
D: DeserializeOwned,
impl<D> DeserializeWith<JsonFormat> for Dwhere
D: DeserializeOwned,
Sourceยงfn deserialize_with(body: ResponseBody) -> Result<D, Error>
fn deserialize_with(body: ResponseBody) -> Result<D, Error>
Deserialize the response body using the specified format. Read more