pub struct BatchRequestOutputError {
pub code: String,
pub message: String,
}
Fields§
§code: String
A machine-readable error code.
message: String
A human-readable error message.
Trait Implementations§
Source§impl Clone for BatchRequestOutputError
impl Clone for BatchRequestOutputError
Source§fn clone(&self) -> BatchRequestOutputError
fn clone(&self) -> BatchRequestOutputError
Returns a copy 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<'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