#[non_exhaustive]pub struct BatchSendItemError {
pub code: String,
pub message: String,
pub category: Option<String>,
pub retryable: bool,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.code: String§message: String§category: Option<String>§retryable: boolTrait Implementations§
Source§impl Clone for BatchSendItemError
impl Clone for BatchSendItemError
Source§fn clone(&self) -> BatchSendItemError
fn clone(&self) -> BatchSendItemError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BatchSendItemError
impl Debug for BatchSendItemError
Source§impl<'de> Deserialize<'de> for BatchSendItemError
impl<'de> Deserialize<'de> for BatchSendItemError
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 BatchSendItemError
impl PartialEq for BatchSendItemError
Source§fn eq(&self, other: &BatchSendItemError) -> bool
fn eq(&self, other: &BatchSendItemError) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for BatchSendItemError
impl Serialize for BatchSendItemError
impl StructuralPartialEq for BatchSendItemError
Auto Trait Implementations§
impl Freeze for BatchSendItemError
impl RefUnwindSafe for BatchSendItemError
impl Send for BatchSendItemError
impl Sync for BatchSendItemError
impl Unpin for BatchSendItemError
impl UnsafeUnpin for BatchSendItemError
impl UnwindSafe for BatchSendItemError
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