pub struct LinkPlan {
pub source_id: Uuid,
pub target_id: Uuid,
pub statement: PlanStatement,
}Expand description
Write plan for a link op (create a typed directed edge). Endpoint
existence is checked structurally, not via an unanchored plan-level
guard: statement is a guarded INSERT ... SELECT ... WHERE EXISTS
shape whose SELECT re-probes both endpoints inside the transaction, so
the runner’s affected-row check on this one statement is the
in-transaction existence probe (ADR-099 acceptance criteria’s
dangling-edge case — [delete(X, hard), link(A, X)] — is closed by this
guard failing once X is gone, regardless of statement ordering
convention).
Fields§
§source_id: Uuid§target_id: Uuid§statement: PlanStatementThe guarded INSERT ... SELECT ... WHERE EXISTS(...) statement:
its affected-row count is the endpoint-existence probe.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LinkPlan
impl RefUnwindSafe for LinkPlan
impl Send for LinkPlan
impl Sync for LinkPlan
impl Unpin for LinkPlan
impl UnsafeUnpin for LinkPlan
impl UnwindSafe for LinkPlan
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more