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§

source

fn build(self, s: &mut String) -> Result<(), Error>

Builds the column based on the data.

Parameter:

  • s: mutable reference to a String to write the operation to

Implementors§

source§

impl<'until_build, 'post_build> CreateColumn<'post_build> for CreateColumnImpl<'until_build, 'post_build>