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§
Sourcetype InnerContainer
type InnerContainer
The resulting container type.
Required Methods§
Sourcefn enter(self) -> Self::InnerContainer
fn enter(self) -> Self::InnerContainer
Update timestamps from T1 to T2.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".