DeferRedraw

Trait DeferRedraw 

Source
pub trait DeferRedraw<W>
where Self: Sized,
{ // Provided method fn defer_redraw(self) { ... } }

Provided Methods§

Source

fn defer_redraw(self)

Requests to do a redraw and nothing else.

Mostly a shorthand for defer_with_redraw with an empty closure.

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<W: Widget + 'static> DeferRedraw<W> for UiRunner<W>

Implementors§