pub trait Image {
    fn dimensions(&self, handle: &Handle) -> Size<u32>;
}
Expand description

A graphics backend that supports image rendering.

Required Methods§

Returns the dimensions of the provided image.

Implementors§