pub trait PostgresWriteable: PostgresWriteFields + PostgresJoins {
// Required method
fn write(self) -> PostgresWrite;
}Expand description
A trait that declares a struct as writeable.
Do not manually implement this. Instead, implement
PostgresWriteFields and PostgresJoins, and derive
this trait.
Required Methods§
fn write(self) -> PostgresWrite
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.