1 2 3 4 5 6 7 8 9 10 11 12 13
// SPDX-License-Identifier: MIT mod user_instance; /// For convenience to provide traits and their blanket implementations to write subclass. pub mod prelude { pub use super::user_instance::*; } use { super::*, glib::{subclass::prelude::*, translate::*}, };