Docs.rs
  • leetcode-tui-rs-0.1.0
    • leetcode-tui-rs 0.1.0
    • Docs.rs crate page
    • MIT
    • Links
    • Homepage
    • Repository
    • crates.io
    • Source
    • Owners
    • akarsh1995
    • Dependencies
      • async-trait ^0.1.71 normal
      • crossbeam ^0.8.2 normal
      • crossterm ^0.26.1 normal
      • futures ^0.3.28 normal
      • futures-timer ^3.0.2 normal
      • html2text ^0.6.0 normal
      • kdam ^0.3.0 normal
      • ratatui ^0.22.0 normal
      • reqwest ^0.11.18 normal
      • sea-orm ^0 normal
      • sea-orm-migration ^0 normal
      • serde ^1.0.171 normal
      • serde_json ^1.0.102 normal
      • thiserror ^1.0.43 normal
      • tokio ^1.29.1 normal
      • toml ^0.7.6 normal
      • xdg ^2.5.0 normal
      • tracing ^0.1.37 dev
      • tracing-subscriber ^0.3.17 dev
    • Versions
    • 26.21% of the crate is documented
  • Go to latest version
  • Platform
    • x86_64-unknown-linux-gnu
  • Feature flags
  • docs.rs
    • About docs.rs
    • Privacy policy
  • Rust
    • Rust website
    • The Book
    • Standard Library API Reference
    • Rust by Example
    • The Cargo Guide
    • Clippy Documentation
logo

logo

StatementBuilder

Required Methods

  • build

Implementors

In leetcode_tui_rs::migrations::sea_orm

?
Change settings

Trait leetcode_tui_rs::migrations::sea_orm::StatementBuilder

source ·
pub trait StatementBuilder {
    // Required method
    fn build(&self, db_backend: &DatabaseBackend) -> Statement;
}
Expand description

Any type that can build a Statement

Required Methods§

source

fn build(&self, db_backend: &DatabaseBackend) -> Statement

Method to call in order to build a Statement

Implementors§

source§

impl StatementBuilder for DeleteStatement

source§

impl StatementBuilder for ForeignKeyCreateStatement

source§

impl StatementBuilder for ForeignKeyDropStatement

source§

impl StatementBuilder for IndexCreateStatement

source§

impl StatementBuilder for IndexDropStatement

source§

impl StatementBuilder for InsertStatement

source§

impl StatementBuilder for SelectStatement

source§

impl StatementBuilder for TableAlterStatement

source§

impl StatementBuilder for TableCreateStatement

source§

impl StatementBuilder for TableDropStatement

source§

impl StatementBuilder for TableRenameStatement

source§

impl StatementBuilder for TableTruncateStatement

source§

impl StatementBuilder for UpdateStatement

source§

impl StatementBuilder for TypeAlterStatement

source§

impl StatementBuilder for TypeCreateStatement

source§

impl StatementBuilder for TypeDropStatement