pub struct Error {
pub code: Option<StorageErrorCode>,
pub copy_source_error_code: Option<String>,
pub copy_source_error_message: Option<String>,
pub copy_source_status_code: Option<i32>,
pub error_code: Option<String>,
pub message: Option<String>,
pub x_ms_copy_source_error_code: Option<String>,
pub x_ms_copy_source_status_code: Option<i32>,
}Expand description
The error response.
This defines the wire format only. Language SDKs wrap this in idiomatic error types.
Fields§
§code: Option<StorageErrorCode>The error code.
copy_source_error_code: Option<String>The copy source error code.
copy_source_error_message: Option<String>The copy source error message.
copy_source_status_code: Option<i32>The copy source status code.
error_code: Option<String>The error code.
message: Option<String>The error message.
x_ms_copy_source_error_code: Option<String>The error code for the copy source.
x_ms_copy_source_status_code: Option<i32>The status code for the copy source.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Error
impl<'de> Deserialize<'de> for Error
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 Error
impl RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl UnsafeUnpin for Error
impl UnwindSafe for Error
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
Source§impl<D> DeserializeWith<XmlFormat> for Dwhere
D: DeserializeOwned,
impl<D> DeserializeWith<XmlFormat> 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