pub unsafe trait ObjectType:
UnsafeFrom<ObjectRef>
+ Into<ObjectRef>
+ StaticType
+ Debug
+ Clone
+ PartialEq
+ Eq
+ PartialOrd
+ Ord
+ Hash
+ for<'a> ToGlibPtr<'a, *mut Self::GlibType>
+ 'static {
type GlibType: 'static;
type GlibClassType: 'static;
type RustClassType: 'static;
// Required methods
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.
Required Associated Types§
Sourcetype GlibClassType: 'static
type GlibClassType: 'static
type of the FFI Class structure.
Sourcetype RustClassType: 'static
type RustClassType: 'static
type of the Rust Class structure.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.