Skip to main content

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§

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<T: AsImage> IntoImage for T