pub trait ToInterval<Bound> {
    // Required method
    fn to_interval(self) -> Interval<Bound>;
}

Required Methods§

source

fn to_interval(self) -> Interval<Bound>

Implementations on Foreign Types§

source§

impl<Bound: Width + Num> ToInterval<Bound> for (Bound, Bound)

source§

fn to_interval(self) -> Interval<Bound>

source§

impl<Bound: Width + Num> ToInterval<Bound> for ()

source§

fn to_interval(self) -> Interval<Bound>

Implementors§

source§

impl<Bound> ToInterval<Bound> for Interval<Bound>

source§

impl<Bound: Width + Num> ToInterval<Bound> for Bound