pub struct MissingEndpoints {
pub source: bool,
pub target: bool,
}Expand description
Which of a would-be edge’s two endpoints were missing when a guarded write’s in-transaction existence check refused it (#769 round-2 codex Medium 1). Produced by the guard’s own commit-time probe, not a post-hoc read after the write already failed, so a concurrent hard-delete landing after the guard ran cannot make this outcome lie about which endpoint was actually missing at write time.
Fields§
§source: bool§target: boolImplementations§
Trait Implementations§
Source§impl Clone for MissingEndpoints
impl Clone for MissingEndpoints
Source§fn clone(&self) -> MissingEndpoints
fn clone(&self) -> MissingEndpoints
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 moreimpl Copy for MissingEndpoints
Source§impl Debug for MissingEndpoints
impl Debug for MissingEndpoints
Source§impl Default for MissingEndpoints
impl Default for MissingEndpoints
Source§fn default() -> MissingEndpoints
fn default() -> MissingEndpoints
Returns the “default value” for a type. Read more
impl Eq for MissingEndpoints
Source§impl PartialEq for MissingEndpoints
impl PartialEq for MissingEndpoints
impl StructuralPartialEq for MissingEndpoints
Auto Trait Implementations§
impl Freeze for MissingEndpoints
impl RefUnwindSafe for MissingEndpoints
impl Send for MissingEndpoints
impl Sync for MissingEndpoints
impl Unpin for MissingEndpoints
impl UnsafeUnpin for MissingEndpoints
impl UnwindSafe for MissingEndpoints
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