IntoImage

Trait IntoImage 

Source
pub trait IntoImage {
    // Required method
    fn into_image(self) -> ImageBuffer;
}
Available on crate feature input only.
Expand description

画像データを ImageBuffer に変換するトレイト。

Required Methods§

Implementors§

Source§

impl<T: AsImage> IntoImage for T