pub struct BatchRequestOutputError {
pub code: Option<String>,
pub message: Option<String>,
}
Expand description
For requests that failed with a non-HTTP error, this will contain more information on the cause of the failure.
Fields§
§code: Option<String>
A machine-readable error code.
message: Option<String>
A human-readable error message.
Implementations§
Trait Implementations§
Source§impl Clone for BatchRequestOutputError
impl Clone for BatchRequestOutputError
Source§fn clone(&self) -> BatchRequestOutputError
fn clone(&self) -> BatchRequestOutputError
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 BatchRequestOutputError
impl Debug for BatchRequestOutputError
Source§impl Default for BatchRequestOutputError
impl Default for BatchRequestOutputError
Source§fn default() -> BatchRequestOutputError
fn default() -> BatchRequestOutputError
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BatchRequestOutputError
impl<'de> Deserialize<'de> for BatchRequestOutputError
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 BatchRequestOutputError
impl PartialEq for BatchRequestOutputError
Source§impl Serialize for BatchRequestOutputError
impl Serialize for BatchRequestOutputError
impl StructuralPartialEq for BatchRequestOutputError
Auto Trait Implementations§
impl Freeze for BatchRequestOutputError
impl RefUnwindSafe for BatchRequestOutputError
impl Send for BatchRequestOutputError
impl Sync for BatchRequestOutputError
impl Unpin for BatchRequestOutputError
impl UnwindSafe for BatchRequestOutputError
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