pub trait CopyInsert {
const COLUMNS: &'static [&'static str];
// Required method
fn copy_row(&self, w: &mut CopyRow, patch: &str);
}Expand description
A row type that can stream itself into a Postgres COPY ... FROM STDIN text sink.
Required Associated Constants§
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.