Trait fj::syntax::Group

source ·
pub trait Group {
    // Required method
    fn group<Other>(&self, other: &Other) -> Group
       where Other: Clone + Into<Shape>;
}
Expand description

Convenient syntax to create an fj::Group

Required Methods§

source

fn group<Other>(&self, other: &Other) -> Groupwhere Other: Clone + Into<Shape>,

Create a group with self and other

Implementors§

source§

impl<T> Group for Twhere T: Clone + Into<Shape>,