pub unsafe trait IntoSQLPOINTER: Copy {
// Required method
fn into_SQLPOINTER(self) -> SQLPOINTER;
}Expand description
A value-to-SQLPOINTER conversion that consumes the input value. Invariant: SQLPOINTER obtained through this trait is never written to
Required Methods§
fn into_SQLPOINTER(self) -> SQLPOINTER
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.