pub struct ChangeSet {
pub envelope: Envelope,
pub ops: Vec<Op>,
}Expand description
A staged change-set: envelope metadata plus an ordered list of operations.
Operation order is semantically load-bearing (a link may target an
earlier create’s stage-time id) and is preserved exactly through
to_ndjson / from_ndjson.
Fields§
§envelope: Envelope§ops: Vec<Op>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ChangeSet
impl RefUnwindSafe for ChangeSet
impl Send for ChangeSet
impl Sync for ChangeSet
impl Unpin for ChangeSet
impl UnsafeUnpin for ChangeSet
impl UnwindSafe for ChangeSet
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