pub trait Ident {
type Type: Copy;
const IDENTIFIER: Self::Type;
}Expand description
Implementing type must have the same representation as SQLPOINTER
Required Associated Constants§
const IDENTIFIER: Self::Type
Required Associated Types§
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.