pub trait Strategy {
// Required method
fn infer_change_type(
ctx: &Context,
prev_row: Option<&OwnedRow>,
curr_row: &OwnedRow,
row_count_col: usize,
) -> Option<RecordType>;
}
Required Methods§
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.