Trait glib::IntoGStr

source ·
pub trait IntoGStr {
    // Required method
    fn run_with_gstr<T, F: FnOnce(&GStr) -> T>(self, f: F) -> T;
}
Expand description

A trait to accept both &str or &GStr as an argument.

Required Methods§

source

fn run_with_gstr<T, F: FnOnce(&GStr) -> T>(self, f: F) -> T

Implementations on Foreign Types§

source§

impl IntoGStr for String

source§

fn run_with_gstr<T, F: FnOnce(&GStr) -> T>(self, f: F) -> T

source§

impl IntoGStr for &str

source§

fn run_with_gstr<T, F: FnOnce(&GStr) -> T>(self, f: F) -> T

source§

impl IntoGStr for &String

source§

fn run_with_gstr<T, F: FnOnce(&GStr) -> T>(self, f: F) -> T

Implementors§