Trait iced_core::image::Renderer

source ·
pub trait Renderer: Renderer {
    type Handle: Clone + Hash;

    // Required methods
    fn dimensions(&self, handle: &Self::Handle) -> Size<u32>;
    fn draw(
        &mut self,
        handle: Self::Handle,
        filter_method: FilterMethod,
        bounds: Rectangle
    );
}
Expand description

A Renderer that can render raster graphics.

Required Associated Types§

source

type Handle: Clone + Hash

The image Handle to be displayed. Iced exposes its own default implementation of a Handle

Required Methods§

source

fn dimensions(&self, handle: &Self::Handle) -> Size<u32>

Returns the dimensions of an image for the given Handle.

source

fn draw( &mut self, handle: Self::Handle, filter_method: FilterMethod, bounds: Rectangle )

Draws an image with the given Handle and inside the provided bounds.

Object Safety§

This trait is not object safe.

Implementors§