Trait gio::ApplicationCommandLineExt[][src]

pub trait ApplicationCommandLineExt: 'static {
    fn create_file_for_arg<P: AsRef<OsStr>>(&self, arg: P) -> Option<File>;
fn get_arguments(&self) -> Vec<OsString>;
fn get_cwd(&self) -> Option<PathBuf>;
fn get_environ(&self) -> Vec<OsString>;
fn get_exit_status(&self) -> i32;
fn get_is_remote(&self) -> bool;
fn get_platform_data(&self) -> Option<Variant>;
fn get_stdin(&self) -> Option<InputStream>;
fn getenv<P: AsRef<OsStr>>(&self, name: P) -> Option<GString>;
fn set_exit_status(&self, exit_status: i32);
fn connect_property_is_remote_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required methods

fn create_file_for_arg<P: AsRef<OsStr>>(&self, arg: P) -> Option<File>[src]

fn get_arguments(&self) -> Vec<OsString>[src]

fn get_cwd(&self) -> Option<PathBuf>[src]

fn get_environ(&self) -> Vec<OsString>[src]

fn get_exit_status(&self) -> i32[src]

fn get_is_remote(&self) -> bool[src]

fn get_platform_data(&self) -> Option<Variant>[src]

fn get_stdin(&self) -> Option<InputStream>[src]

fn getenv<P: AsRef<OsStr>>(&self, name: P) -> Option<GString>[src]

fn set_exit_status(&self, exit_status: i32)[src]

fn connect_property_is_remote_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId
[src]

Loading content...

Implementors

impl<O: IsA<ApplicationCommandLine>> ApplicationCommandLineExt for O[src]

Loading content...