[][src]Trait gio::DesktopAppInfoExt

pub trait DesktopAppInfoExt: 'static {
    fn get_action_name(&self, action_name: &str) -> Option<GString>;
fn get_boolean(&self, key: &str) -> bool;
fn get_categories(&self) -> Option<GString>;
fn get_filename(&self) -> Option<PathBuf>;
fn get_generic_name(&self) -> Option<GString>;
fn get_is_hidden(&self) -> bool;
fn get_keywords(&self) -> Vec<GString>;
fn get_nodisplay(&self) -> bool;
fn get_show_in<'a, P: Into<Option<&'a str>>>(&self, desktop_env: P) -> bool;
fn get_startup_wm_class(&self) -> Option<GString>;
fn get_string(&self, key: &str) -> Option<GString>;
fn has_key(&self, key: &str) -> bool;
fn launch_action<'a, P: IsA<AppLaunchContext> + 'a, Q: Into<Option<&'a P>>>(
        &self,
        action_name: &str,
        launch_context: Q
    );
fn list_actions(&self) -> Vec<GString>; }

Required methods

fn get_action_name(&self, action_name: &str) -> Option<GString>

fn get_boolean(&self, key: &str) -> bool

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

fn get_filename(&self) -> Option<PathBuf>

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

fn get_is_hidden(&self) -> bool

fn get_keywords(&self) -> Vec<GString>

fn get_nodisplay(&self) -> bool

fn get_show_in<'a, P: Into<Option<&'a str>>>(&self, desktop_env: P) -> bool

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

fn get_string(&self, key: &str) -> Option<GString>

fn has_key(&self, key: &str) -> bool

fn launch_action<'a, P: IsA<AppLaunchContext> + 'a, Q: Into<Option<&'a P>>>(
    &self,
    action_name: &str,
    launch_context: Q
)

fn list_actions(&self) -> Vec<GString>

Loading content...

Implementors

impl<O: IsA<DesktopAppInfo>> DesktopAppInfoExt for O[src]

Loading content...