pub trait RealizeShapeTo<Dst: Shape>: Shape {
    // Required method
    fn realized(&self) -> Option<Dst>;
}
Expand description

Marker for shapes that can be converted using their concrete types.

Required Methods§

source

fn realized(&self) -> Option<Dst>

Implementors§

source§

impl<Src: Shape<Concrete = Dst::Concrete>, Dst: Shape> RealizeShapeTo<Dst> for Src