pub trait Selectable {
type Table: Table + ?Sized;
type Fields: Default;
// Required method
fn write_join(&self, sql: &mut String);
}Required Associated Types§
Required Methods§
fn write_join(&self, sql: &mut String)
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".