pub struct ComputeDeletionsArg<'a> {
pub known_dots: &'a CausalContext,
pub live_dots: &'a CausalContext,
pub ignorant: &'a CausalContext,
}Fields§
§known_dots: &'a CausalContextShould be the causal context (ie, .context) of the more up to date CausalDotStore.
live_dots: &'a CausalContextShould be store.dots() of the more up to date CausalDotStore.
ignorant: &'a CausalContextShould be store.dots() of the CausalDotStore that may be missing deletes.
Auto Trait Implementations§
impl<'a> Freeze for ComputeDeletionsArg<'a>
impl<'a> RefUnwindSafe for ComputeDeletionsArg<'a>
impl<'a> Send for ComputeDeletionsArg<'a>
impl<'a> Sync for ComputeDeletionsArg<'a>
impl<'a> Unpin for ComputeDeletionsArg<'a>
impl<'a> UnwindSafe for ComputeDeletionsArg<'a>
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