Skip to main content

AlterTable

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.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

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