pub trait JoinSelect {
type Table: Table;
type Fields: Default;
// Required method
fn write_join_select(&self, sql: &mut String);
// Provided method
fn select(self) -> SelectStatement<Self, WildCard>
where Self: Sized { ... }
}Required Associated Types§
Required Methods§
fn write_join_select(&self, sql: &mut String)
Provided Methods§
fn select(self) -> SelectStatement<Self, WildCard>where
Self: Sized,
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".