Trait qmetaobject::qtdeclarative::QSingletonInit[][src]

pub trait QSingletonInit {
    fn init(&mut self);
}
Expand description

Initialization for singleton QML objects.

Required methods

Initialize the singleton QML object.

Will be called on a default-constructed object after the C++ object has been created.

Panics

The process will be aborted when the method panics.

Implementors