Trait MenuBarExt

Source
pub trait MenuBarExt:
    IsA<MenuBar>
    + Sealed
    + 'static {
    // Provided methods
    fn child_pack_direction(&self) -> PackDirection { ... }
    fn pack_direction(&self) -> PackDirection { ... }
    fn set_child_pack_direction(&self, child_pack_dir: PackDirection) { ... }
    fn set_pack_direction(&self, pack_dir: PackDirection) { ... }
    fn connect_child_pack_direction_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId { ... }
    fn connect_pack_direction_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F,
    ) -> SignalHandlerId { ... }
}

Provided Methods§

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.

Implementors§