Trait glib::object::ObjectType[][src]

pub unsafe trait ObjectType: UnsafeFrom<ObjectRef> + Into<ObjectRef> + StaticType + Debug + Clone + PartialEq + Eq + PartialOrd + Ord + Hash + ValueType + ToValue + ToValueOptional + FromValueOptional<'static> + for<'a> ToGlibPtr<'a, *mut Self::GlibType> + 'static {
    type GlibType: 'static;
    type GlibClassType: 'static;
    fn as_object_ref(&self) -> &ObjectRef;
fn as_ptr(&self) -> *mut Self::GlibType; }
Expand description

Implemented by types representing glib::Object and subclasses of it.

Associated Types

type of the FFI Instance structure.

type of the FFI Class structure.

Required methods

Implementors