Trait itc::IntervalTreeClock [] [src]

pub trait IntervalTreeClock where
    Self: Sized
{ fn fork(&self) -> (Self, Self); fn peek(&self) -> (Self, Self); fn join(&self, other: &Self) -> Self; fn event(&self) -> Self; fn send(&self) -> (Self, Self); fn receive(&self, other: &Self) -> Self; fn sync(&self, other: &Self) -> (Self, Self); }

Required Methods

Implementors