MenuExt

Trait MenuExt 

Source
pub trait MenuExt: 'static {
    // Required methods
    fn client(&self) -> Option<Client>;
    fn dbus_name(&self) -> Option<GString>;
    fn dbus_object(&self) -> Option<GString>;
}
Expand description

Trait containing all Menu methods.

§Implementors

Menu

Required Methods§

Source

fn client(&self) -> Option<Client>

An accessor for the client that this menu is using to communicate with the server.

§Returns

A valid Client or NULL on error.

Source

fn dbus_name(&self) -> Option<GString>

Source

fn dbus_object(&self) -> Option<GString>

Implementors§

Source§

impl<O: IsA<Menu>> MenuExt for O