1 2 3 4 5
/// Convert a type into image pub trait IntoImage { type Output; fn into_image(self) -> Self::Output; }