IntoBounds2D

Trait IntoBounds2D 

Source
pub trait IntoBounds2D<T> {
    // Required method
    fn to_bounds(self) -> Bounds2D<T>;
}

Required Methods§

Source

fn to_bounds(self) -> Bounds2D<T>

Implementations on Foreign Types§

Source§

impl<T> IntoBounds2D<T> for [T; 4]
where T: Num + Copy,

Source§

impl<T> IntoBounds2D<T> for (T, T, T, T)
where T: Num + Copy,

Implementors§

Source§

impl<T> IntoBounds2D<T> for Bounds2D<T>