pub trait IntoGlib {
    type GlibType: Copy;
    // Required method
    fn into_glib(self) -> Self::GlibType;
}Expand description
Translate a simple type.
pub trait IntoGlib {
    type GlibType: Copy;
    // Required method
    fn into_glib(self) -> Self::GlibType;
}Translate a simple type.