pub trait Enter<T1, T2> {
    type InnerContainer;

    // Required method
    fn enter(self) -> Self::InnerContainer;
}
Expand description

A container that can enter from timestamp T1 into timestamp T2.

Required Associated Types§

Source

type InnerContainer

The resulting container type.

Required Methods§

Source

fn enter(self) -> Self::InnerContainer

Update timestamps from T1 to T2.

Implementations on Foreign Types§

Source§

impl<D, T1: Timestamp, T2: Refines<T1>, R> Enter<T1, T2> for Vec<(D, T1, R)>

Implementors§