pub unsafe trait AttribField {
// Required method
fn detail() -> (usize, u32);
}
Expand description
§Safety
Returned information will be used to index the raw memory of a VertexAttribBuffer. Returning wrong information will cause seg faults.
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.