pub trait TryIntoInterval {
// Required method
fn try_into_interval(self) -> Result<Interval, ParseTimeError>;
}Required Methods§
fn try_into_interval(self) -> Result<Interval, ParseTimeError>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".