mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 23:34:48 +00:00
17 lines
242 B
Rust
17 lines
242 B
Rust
mod gio {
|
|
pub trait SettingsExt {
|
|
fn abc(&self) {}
|
|
}
|
|
impl<T> SettingsExt for T {}
|
|
}
|
|
|
|
mod gtk {
|
|
pub trait SettingsExt {
|
|
fn efg(&self) {}
|
|
}
|
|
impl<T> SettingsExt for T {}
|
|
}
|
|
|
|
pub use gtk::*;
|
|
pub use gio::*;
|