Image

Trait Image 

Source
pub trait Image: Clone {
    // Required method
    fn size(&self) -> Size;
}
Expand description

A trait for a backend’s bitmap image type.

This is cheaply cloneable.

Required Methods§

Source

fn size(&self) -> Size

The size of the image

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl Image for Bitmap

Source§

fn size(&self) -> Size

Implementors§