pub struct DiffRequest {
pub left: BranchId,
pub right: BranchId,
pub left_until: ReplayEnd,
pub right_until: ReplayEnd,
pub streams: StreamSelector,
}Expand description
What to diff: two timelines, each a branch bounded by an exclusive
until, plus a stream selector scoped onto the emitted plans. See
Salamander::diff.
Fields§
§left: BranchIdThe left timeline’s branch.
right: BranchIdThe right timeline’s branch.
left_until: ReplayEndExclusive upper bound of the left timeline (default: head).
right_until: ReplayEndExclusive upper bound of the right timeline (default: head).
streams: StreamSelectorWhich streams the emitted replay plans select. The divergence position itself is positional and stream-independent.
Implementations§
Trait Implementations§
Source§impl Clone for DiffRequest
impl Clone for DiffRequest
Source§fn clone(&self) -> DiffRequest
fn clone(&self) -> DiffRequest
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 DiffRequest
impl Debug for DiffRequest
impl Eq for DiffRequest
Source§impl PartialEq for DiffRequest
impl PartialEq for DiffRequest
impl StructuralPartialEq for DiffRequest
Auto Trait Implementations§
impl Freeze for DiffRequest
impl RefUnwindSafe for DiffRequest
impl Send for DiffRequest
impl Sync for DiffRequest
impl Unpin for DiffRequest
impl UnsafeUnpin for DiffRequest
impl UnwindSafe for DiffRequest
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