Trait sourceview5::prelude::WidgetExtManual

source ·
pub trait WidgetExtManual: Sealed + IsA<Widget> + 'static {
    // Provided method
    fn add_tick_callback<P>(&self, callback: P) -> TickCallbackId
       where P: Fn(&Self, &FrameClock) -> ControlFlow + 'static { ... }
}
Expand description

Trait containing manually implemented methods of Widget.

Provided Methods§

source

fn add_tick_callback<P>(&self, callback: P) -> TickCallbackId
where P: Fn(&Self, &FrameClock) -> ControlFlow + 'static,

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<O> WidgetExtManual for O
where O: IsA<Widget>,