Trait IntoShape

Source
pub trait IntoShape {
    // Required method
    fn into_shape(self) -> Shape;
}

Required Methods§

Implementors§

Source§

impl<'a> IntoShape for &'a Shape

Source§

impl<S> IntoShape for S
where S: Into<Shape>,