Struct panda::sys::ObjectClass [−][src]
#[repr(C)]pub struct ObjectClass {
pub type_: *mut TypeImpl,
pub interfaces: *mut _GSList,
pub object_cast_cache: [*const i8; 4],
pub class_cast_cache: [*const i8; 4],
pub unparent: Option<unsafe extern "C" fn(*mut Object)>,
pub properties: *mut _GHashTable,
}Expand description
ObjectClass:
The base for all classes. The only thing that #ObjectClass contains is an integer type handle.
Fields
type_: *mut TypeImplinterfaces: *mut _GSListobject_cast_cache: [*const i8; 4]class_cast_cache: [*const i8; 4]unparent: Option<unsafe extern "C" fn(*mut Object)>properties: *mut _GHashTableTrait Implementations
Auto Trait Implementations
impl RefUnwindSafe for ObjectClass
impl !Send for ObjectClass
impl !Sync for ObjectClass
impl Unpin for ObjectClass
impl UnwindSafe for ObjectClass
Blanket Implementations
Mutably borrows from an owned value. Read more