Trait IntoInterval

Source
pub trait IntoInterval {
    // Required method
    fn into_interval(self) -> Intervals;
}
Expand description

IntoInterval is a trait describing a method which consumes the current type, converting it into an Intervals

Required Methods§

Implementors§

Source§

impl<I> IntoInterval for I
where I: Into<Intervals>,