pub unsafe trait ClassStruct: 'static {
    type Type: ObjectSubclass;
    fn class_init(&mut self) { ... }
}
Expand description

Trait implemented by structs that implement a GObject C class struct.

The struct must be #[repr(C)] and have the parent type’s class struct as the first field.

See basic::ClassStruct for a basic implementation of this that can be used most of the time and should only not be used if additional fields are required in the class struct, e.g. for declaring new virtual methods.

Associated Types

Corresponding object subclass type for this class struct.

Provided methods

Override the vfuncs of all parent types.

This is automatically called during type initialization.

Implementations on Foreign Types

Implementors