Trait sourceview5::prelude::ApplicationCommandLineExt

source ·
pub trait ApplicationCommandLineExt: IsA<ApplicationCommandLine> + Sealed + 'static {
    // Provided methods
    fn create_file_for_arg(&self, arg: impl AsRef<OsStr>) -> File { ... }
    fn arguments(&self) -> Vec<OsString> { ... }
    fn cwd(&self) -> Option<PathBuf> { ... }
    fn environ(&self) -> Vec<OsString> { ... }
    fn exit_status(&self) -> i32 { ... }
    fn is_remote(&self) -> bool { ... }
    fn options_dict(&self) -> VariantDict { ... }
    fn platform_data(&self) -> Option<Variant> { ... }
    fn stdin(&self) -> Option<InputStream> { ... }
    fn getenv(&self, name: impl AsRef<OsStr>) -> Option<GString> { ... }
    fn set_exit_status(&self, exit_status: i32) { ... }
    fn connect_is_remote_notify<F>(&self, f: F) -> SignalHandlerId
       where F: Fn(&Self) + 'static { ... }
}

Provided Methods§

source

fn create_file_for_arg(&self, arg: impl AsRef<OsStr>) -> File

source

fn arguments(&self) -> Vec<OsString>

source

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

source

fn environ(&self) -> Vec<OsString>

source

fn exit_status(&self) -> i32

source

fn is_remote(&self) -> bool

source

fn options_dict(&self) -> VariantDict

source

fn platform_data(&self) -> Option<Variant>

source

fn stdin(&self) -> Option<InputStream>

source

fn getenv(&self, name: impl AsRef<OsStr>) -> Option<GString>

source

fn set_exit_status(&self, exit_status: i32)

source

fn connect_is_remote_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static,

Object Safety§

This trait is not object safe.

Implementors§