Trait AlterTable

Source
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<'post_build> AlterTable<'post_build> for AlterTableImpl<'_, 'post_build>