pub trait Selection {
// Required method
fn get_selected_fields(&self) -> Vec<String>;
// Provided method
fn get_sql_selection(&self, wrap_char: char) -> String { ... }
}Required Methods§
fn get_selected_fields(&self) -> Vec<String>
Provided Methods§
fn get_sql_selection(&self, wrap_char: char) -> String
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".