pub trait AsSingleTimeInput {
// Required method
fn try_into_input_time(self) -> Result<InputTime, ParseTimeError>;
}Expand description
Single time input only refers to the i64 component of an EventTime (no event id).
Required Methods§
fn try_into_input_time(self) -> Result<InputTime, ParseTimeError>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".