pub trait CreateColumn<'post_build>: Sized {
// Required method
fn build(self, s: &mut String) -> Result<(), Error>;
}Expand description
Trait representing the create table builder.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".