pub struct BatchPutMessageErrorEntry {
pub error_code: Option<String>,
pub error_message: Option<String>,
pub message_id: Option<String>,
}Expand description
Contains informations about errors.
Fields§
§error_code: Option<String>The code associated with the error.
error_message: Option<String>The message associated with the error.
message_id: Option<String>The ID of the message that caused the error. (See the value corresponding to the "messageId" key in the message object.)
Trait Implementations§
Source§impl Clone for BatchPutMessageErrorEntry
impl Clone for BatchPutMessageErrorEntry
Source§fn clone(&self) -> BatchPutMessageErrorEntry
fn clone(&self) -> BatchPutMessageErrorEntry
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 BatchPutMessageErrorEntry
impl Debug for BatchPutMessageErrorEntry
Source§impl Default for BatchPutMessageErrorEntry
impl Default for BatchPutMessageErrorEntry
Source§fn default() -> BatchPutMessageErrorEntry
fn default() -> BatchPutMessageErrorEntry
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BatchPutMessageErrorEntry
impl<'de> Deserialize<'de> for BatchPutMessageErrorEntry
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
impl StructuralPartialEq for BatchPutMessageErrorEntry
Auto Trait Implementations§
impl Freeze for BatchPutMessageErrorEntry
impl RefUnwindSafe for BatchPutMessageErrorEntry
impl Send for BatchPutMessageErrorEntry
impl Sync for BatchPutMessageErrorEntry
impl Unpin for BatchPutMessageErrorEntry
impl UnwindSafe for BatchPutMessageErrorEntry
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