mod gio {
pub trait SettingsExt {
fn abc(&self) {}
}
impl<T> SettingsExt for T {}
mod gtk {
fn efg(&self) {}
pub use gtk::*;
pub use gio::*;