pub trait FrameHeaderImpl: WidgetImpl {
    // Provided methods
    fn page_changed(&self, widget: Option<&Widget>) { ... }
    fn can_drop(&self, widget: &Widget) -> bool { ... }
    fn add_prefix(&self, priority: i32, widget: &Widget) { ... }
    fn add_suffix(&self, priority: i32, widget: &Widget) { ... }
}

Provided Methods§

source

fn page_changed(&self, widget: Option<&Widget>)

source

fn can_drop(&self, widget: &Widget) -> bool

source

fn add_prefix(&self, priority: i32, widget: &Widget)

source

fn add_suffix(&self, priority: i32, widget: &Widget)

Implementors§