Docs.rs
  • sea-orm-migration-1.0.0
    • sea-orm-migration 1.0.0
    • Docs.rs crate page
    • MIT OR Apache-2.0
    • Links
    • Homepage
    • Repository
    • crates.io
    • Source
    • Owners
    • tyt2y3
    • billy1624
    • Dependencies
      • async-trait ^0.1 normal
      • clap ^4.3 normal optional
      • dotenvy ^0.15 normal optional
      • futures ^0.3 normal
      • sea-orm ~1.0.0 normal
      • sea-orm-cli ~1.0.0 normal optional
      • sea-schema ^0.15.0 normal
      • tracing ^0.1 normal
      • tracing-subscriber ^0.3.17 normal
      • async-std ^1 dev
    • Versions
    • 20.5% of the crate is documented
  • Go to latest version
  • Platform
    • i686-pc-windows-msvc
    • i686-unknown-linux-gnu
    • x86_64-apple-darwin
    • x86_64-pc-windows-msvc
    • x86_64-unknown-linux-gnu
  • Feature flags
  • docs.rs
    • About docs.rs
    • Badges
    • Builds
    • Metadata
    • Shorthand URLs
    • Download
    • Rustdoc JSON
    • Build queue
    • Privacy policy
  • Rust
    • Rust website
    • The Book
    • Standard Library API Reference
    • Rust by Example
    • The Cargo Guide
    • Clippy Documentation

sea_orm_migration1.0.0

IntoSchemaManagerConnection

Required Methods

  • into_schema_manager_connection

Implementations on Foreign Types

  • &'c DatabaseConnection
  • &'c DatabaseTransaction

Implementors

In sea_orm_migration::connection

Trait sea_orm_migration::connection::IntoSchemaManagerConnection

source ·
pub trait IntoSchemaManagerConnection<'c>: Send
where Self: 'c,
{ // Required method fn into_schema_manager_connection(self) -> SchemaManagerConnection<'c>; }

Required Methods§

source

fn into_schema_manager_connection(self) -> SchemaManagerConnection<'c>

Implementations on Foreign Types§

source§

impl<'c> IntoSchemaManagerConnection<'c> for &'c DatabaseConnection

source§

fn into_schema_manager_connection(self) -> SchemaManagerConnection<'c>

source§

impl<'c> IntoSchemaManagerConnection<'c> for &'c DatabaseTransaction

source§

fn into_schema_manager_connection(self) -> SchemaManagerConnection<'c>

Implementors§

source§

impl<'c> IntoSchemaManagerConnection<'c> for SchemaManagerConnection<'c>