pub struct GuardedBatchRefusal {
pub entry_index: usize,
pub missing: MissingEndpoints,
}Expand description
Which batch entry a guarded batch write refused on, and why, determined inside the same in-transaction pre-check that aborted the batch.
Fields§
§entry_index: usizeIndex of the first batch entry whose endpoint(s) were missing.
missing: MissingEndpointsTrait Implementations§
Source§impl Clone for GuardedBatchRefusal
impl Clone for GuardedBatchRefusal
Source§fn clone(&self) -> GuardedBatchRefusal
fn clone(&self) -> GuardedBatchRefusal
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 GuardedBatchRefusal
impl Debug for GuardedBatchRefusal
impl Eq for GuardedBatchRefusal
Source§impl PartialEq for GuardedBatchRefusal
impl PartialEq for GuardedBatchRefusal
impl StructuralPartialEq for GuardedBatchRefusal
Auto Trait Implementations§
impl Freeze for GuardedBatchRefusal
impl RefUnwindSafe for GuardedBatchRefusal
impl Send for GuardedBatchRefusal
impl Sync for GuardedBatchRefusal
impl Unpin for GuardedBatchRefusal
impl UnsafeUnpin for GuardedBatchRefusal
impl UnwindSafe for GuardedBatchRefusal
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