pub trait Finaly {
    fn finaly(&self);
}
Expand description

Trait that must be implemented by #[dynamic(finalize)] statics.

Required Methods

This method is called when program or thread exit and the lazy was initialized

Implementors