Trait Located

Source
pub trait Located {
    type Box: BoundBox;

    // Required method
    fn bounds(&self) -> Self::Box;
}

Required Associated Types§

Required Methods§

Source

fn bounds(&self) -> Self::Box

Implementors§

Source§

impl<I: Clone, B: BoundBox> Located for IdBound<I, B>

Source§

type Box = B