pub trait Initialize: Sized {
// Required method
unsafe fn initial() -> Option<Self>;
}
Expand description
Trait that provides a GC-safe default value for the given type, if one exists.
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.