pub struct BatchItemResult<T> {
pub index: usize,
pub status: BatchItemStatus<T>,
}Expand description
Per-item result inside a BatchResponse. The index is the
item’s position in the original request, so clients can pair
results with inputs even after server-side reordering (e.g.
parallel batch_get fetches in the future).
Fields§
§index: usize§status: BatchItemStatus<T>Trait Implementations§
Source§impl<T: Clone> Clone for BatchItemResult<T>
impl<T: Clone> Clone for BatchItemResult<T>
Source§fn clone(&self) -> BatchItemResult<T>
fn clone(&self) -> BatchItemResult<T>
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<T: Debug> Debug for BatchItemResult<T>
impl<T: Debug> Debug for BatchItemResult<T>
Source§impl<'de, T> Deserialize<'de> for BatchItemResult<T>where
T: Deserialize<'de>,
impl<'de, T> Deserialize<'de> for BatchItemResult<T>where
T: Deserialize<'de>,
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<T: PartialEq> PartialEq for BatchItemResult<T>
impl<T: PartialEq> PartialEq for BatchItemResult<T>
Source§impl<T> Serialize for BatchItemResult<T>where
T: Serialize,
impl<T> Serialize for BatchItemResult<T>where
T: Serialize,
impl<T> StructuralPartialEq for BatchItemResult<T>
Auto Trait Implementations§
impl<T> Freeze for BatchItemResult<T>where
T: Freeze,
impl<T> RefUnwindSafe for BatchItemResult<T>where
T: RefUnwindSafe,
impl<T> Send for BatchItemResult<T>where
T: Send,
impl<T> Sync for BatchItemResult<T>where
T: Sync,
impl<T> Unpin for BatchItemResult<T>where
T: Unpin,
impl<T> UnsafeUnpin for BatchItemResult<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for BatchItemResult<T>where
T: UnwindSafe,
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