Trait kiss_ui::callback::OnShow [] [src]

pub trait OnShow: Widget {
    fn set_on_show<Cb>(self, on_show: Cb) -> Self where Cb: Callback<Self>;
}

A trait describing a widget that can be shown, and can notify client code when this occurs.

Required Methods

fn set_on_show<Cb>(self, on_show: Cb) -> Self where Cb: Callback<Self>

Implementors