pub enum BatchEntryResult {
Success(BatchEntrySuccess),
Failure(BatchEntryFailure),
}Expand description
Per-entry result envelope.
Variants§
Success(BatchEntrySuccess)
Failure(BatchEntryFailure)
Trait Implementations§
Source§impl Debug for BatchEntryResult
impl Debug for BatchEntryResult
Auto Trait Implementations§
impl Freeze for BatchEntryResult
impl RefUnwindSafe for BatchEntryResult
impl Send for BatchEntryResult
impl Sync for BatchEntryResult
impl Unpin for BatchEntryResult
impl UnsafeUnpin for BatchEntryResult
impl UnwindSafe for BatchEntryResult
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