Trait fusebox::subclass::fuse::FuseImpl

source ·
pub trait FuseImpl: ObjectImpl {
    // Required methods
    fn get_widget(&self) -> Widget;
    fn shown(&self);
    fn hidden(&self);
}

Required Methods§

source

fn get_widget(&self) -> Widget

source

fn shown(&self)

Called when the Fuse appears to the user.

source

fn hidden(&self)

Called when the Fuse disappear to the user. This is not called when the Fuse got destroyed or the window is closed, use ~Fuse () instead.

Object Safety§

This trait is not object safe.

Implementors§