Trait bones_framework::lib::prelude::bones_schema::raw_fns::RawDefault
source · pub trait RawDefault {
// Required method
unsafe fn raw_default(dst: *mut c_void);
// Provided method
fn raw_default_cb() -> Unsafe<&'static (dyn Fn(*mut c_void) + Send + Sync)> { ... }
}
Expand description
Trait implemented automatically for types that implement Default
and can be used to write
the default value of the type to a pointer.
Required Methods§
sourceunsafe fn raw_default(dst: *mut c_void)
unsafe fn raw_default(dst: *mut c_void)
Write the default value of the type to the pointer.
§Safety
The pointer must be aligned, writable, and have the same layout that this function is assocated to.
Provided Methods§
Object Safety§
This trait is not object safe.