Struct StoredPublicOutcome
pub struct StoredPublicOutcome {
pub result: Value,
pub run_id: Option<String>,
pub request: Option<String>,
pub cursor: Option<String>,
}Expand description
One stored exact-replay outcome of the public SQL surface (the replicator’s
SqlOutcomeRecord, renamed on the move — extraction plan C2).
Fields§
§result: ValueThe stored result payload, decoded.
run_id: Option<String>The journal run that carried the effects, if the operation had any.
request: Option<String>The request-identity JSON the outcome was stored under, if recorded.
cursor: Option<String>The exact commit cursor, if already resolved/backfilled.
Auto Trait Implementations§
impl Freeze for StoredPublicOutcome
impl RefUnwindSafe for StoredPublicOutcome
impl Send for StoredPublicOutcome
impl Sync for StoredPublicOutcome
impl Unpin for StoredPublicOutcome
impl UnsafeUnpin for StoredPublicOutcome
impl UnwindSafe for StoredPublicOutcome
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