pub struct BatchItemStatus {
pub index: usize,
pub result: Result<Option<Vec<u8>>, ClientErrorEnvelope>,
}Expand description
Per-item batch status.
Fields§
§index: usizeOriginal item index.
result: Result<Option<Vec<u8>>, ClientErrorEnvelope>Per-item result.
Trait Implementations§
Source§impl Clone for BatchItemStatus
impl Clone for BatchItemStatus
Source§fn clone(&self) -> BatchItemStatus
fn clone(&self) -> BatchItemStatus
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 BatchItemStatus
impl Debug for BatchItemStatus
Source§impl<'de> Deserialize<'de> for BatchItemStatus
impl<'de> Deserialize<'de> for BatchItemStatus
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 Eq for BatchItemStatus
Source§impl PartialEq for BatchItemStatus
impl PartialEq for BatchItemStatus
Source§fn eq(&self, other: &BatchItemStatus) -> bool
fn eq(&self, other: &BatchItemStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for BatchItemStatus
impl Serialize for BatchItemStatus
impl StructuralPartialEq for BatchItemStatus
Auto Trait Implementations§
impl Freeze for BatchItemStatus
impl RefUnwindSafe for BatchItemStatus
impl Send for BatchItemStatus
impl Sync for BatchItemStatus
impl Unpin for BatchItemStatus
impl UnsafeUnpin for BatchItemStatus
impl UnwindSafe for BatchItemStatus
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