pub struct EmbeddedSchemaClient<'a> { /* private fields */ }Implementations§
Source§impl<'a> EmbeddedSchemaClient<'a>
impl<'a> EmbeddedSchemaClient<'a>
pub fn tables(self) -> EmbeddedListTablesRequest<'a>
pub fn table(self, name: impl Into<String>) -> EmbeddedTableSchemaClient<'a>
pub fn describe_database(self) -> EmbeddedDescribeDatabaseRequest<'a>
pub fn create_table( self, table: impl Into<String>, ) -> EmbeddedCreateTableRequest<'a>
pub fn alter_table( self, table: impl Into<String>, ) -> EmbeddedAlterTableRequest<'a>
pub fn create_table_as( self, table: impl Into<String>, query: QueryBuilder, ) -> EmbeddedCreateTableAsRequest<'a>
pub fn drop_table(self, table: impl Into<String>) -> EmbeddedDdlRequest<'a>
pub fn truncate_table(self, table: impl Into<String>) -> EmbeddedDdlRequest<'a>
pub fn create_index(self, index: IndexDefinition) -> EmbeddedDdlRequest<'a>
pub fn drop_index( self, table: impl Into<String>, index: impl Into<String>, if_exists: bool, ) -> EmbeddedDdlRequest<'a>
pub fn alter_index( self, index: impl Into<String>, new_name: impl Into<String>, ) -> EmbeddedDdlRequest<'a>
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for EmbeddedSchemaClient<'a>
impl<'a> !UnwindSafe for EmbeddedSchemaClient<'a>
impl<'a> Freeze for EmbeddedSchemaClient<'a>
impl<'a> Send for EmbeddedSchemaClient<'a>
impl<'a> Sync for EmbeddedSchemaClient<'a>
impl<'a> Unpin for EmbeddedSchemaClient<'a>
impl<'a> UnsafeUnpin for EmbeddedSchemaClient<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more