pub trait Leave<T1, T2> {
type OuterContainer;
// Required method
fn leave(self) -> Self::OuterContainer;
}Expand description
A container that can leave from timestamp T1 into timestamp T2.
Required Associated Types§
Sourcetype OuterContainer
type OuterContainer
The resulting container type.
Required Methods§
Sourcefn leave(self) -> Self::OuterContainer
fn leave(self) -> Self::OuterContainer
Update timestamps from T1 to T2.