pub trait AlterTable<'post_build> {
    // Required method
    fn build(self) -> Result<Vec<(String, Vec<Value<'post_build>>)>, Error>;
}
Expand description

The trait representing an alter table builder

Required Methods§

source

fn build(self) -> Result<Vec<(String, Vec<Value<'post_build>>)>, Error>

This method is used to build the alter table statement.

Implementors§

source§

impl<'until_build, 'post_build> AlterTable<'post_build> for AlterTableImpl<'until_build, 'post_build>