Trait dessin::ShapeGrouping

source ·
pub trait ShapeGrouping {
    // Required method
    fn group(self) -> Drawing;
}

Required Methods§

source

fn group(self) -> Drawing

Implementations on Foreign Types§

source§

impl<T, U, V, W, X, Y, Z> ShapeGrouping for (T, U, V, W, X, Y, Z)where T: Into<Shape>, U: Into<Shape>, V: Into<Shape>, W: Into<Shape>, X: Into<Shape>, Y: Into<Shape>, Z: Into<Shape>,

source§

impl<T, U, V, W, X, Y> ShapeGrouping for (T, U, V, W, X, Y)where T: Into<Shape>, U: Into<Shape>, V: Into<Shape>, W: Into<Shape>, X: Into<Shape>, Y: Into<Shape>,

source§

impl<T, U> ShapeGrouping for (T, U)where T: Into<Shape>, U: Into<Shape>,

source§

impl<T, U, V, W, X> ShapeGrouping for (T, U, V, W, X)where T: Into<Shape>, U: Into<Shape>, V: Into<Shape>, W: Into<Shape>, X: Into<Shape>,

source§

impl<T, U, V> ShapeGrouping for (T, U, V)where T: Into<Shape>, U: Into<Shape>, V: Into<Shape>,

source§

impl<T, U, V, W> ShapeGrouping for (T, U, V, W)where T: Into<Shape>, U: Into<Shape>, V: Into<Shape>, W: Into<Shape>,

Implementors§

source§

impl<T> ShapeGrouping for Twhere T: Into<Shape>,