pub trait IntoGlib {
    type GlibType: Copy;

    fn into_glib(self) -> Self::GlibType;
}
Expand description

Translate a simple type.

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors