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>,