pub struct WriteBatchResponse<E> { /* private fields */ }Expand description
WriteBatchResponse
Result of a batch write operation. Provides explicit access to stored entities and their identifiers.
Implementations§
Source§impl<E> WriteBatchResponse<E>
impl<E> WriteBatchResponse<E>
Sourcepub fn entries(&self) -> &[WriteResponse<E>]
pub fn entries(&self) -> &[WriteResponse<E>]
Return all write responses.
Sourcepub fn ids(&self) -> Vec<Id<E>>where
E: EntityValue,
pub fn ids(&self) -> Vec<Id<E>>where
E: EntityValue,
Return all primary keys for correlation, reporting, and lookup.
Source§impl<E> WriteBatchResponse<E>
impl<E> WriteBatchResponse<E>
pub fn iter(&self) -> Iter<'_, WriteResponse<E>>
Trait Implementations§
Source§impl<E: Debug> Debug for WriteBatchResponse<E>
impl<E: Debug> Debug for WriteBatchResponse<E>
Source§impl<'a, E> IntoIterator for &'a WriteBatchResponse<E>
impl<'a, E> IntoIterator for &'a WriteBatchResponse<E>
Source§impl<E> IntoIterator for WriteBatchResponse<E>
impl<E> IntoIterator for WriteBatchResponse<E>
Auto Trait Implementations§
impl<E> Freeze for WriteBatchResponse<E>
impl<E> RefUnwindSafe for WriteBatchResponse<E>where
E: RefUnwindSafe,
impl<E> Send for WriteBatchResponse<E>where
E: Send,
impl<E> Sync for WriteBatchResponse<E>where
E: Sync,
impl<E> Unpin for WriteBatchResponse<E>where
E: Unpin,
impl<E> UnsafeUnpin for WriteBatchResponse<E>
impl<E> UnwindSafe for WriteBatchResponse<E>where
E: 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