sea_schema/sqlx_types/mock.rs
1#![allow(dead_code)]
2
3pub struct MySqlPool;
4
5pub mod mysql {
6    pub struct MySqlRow;
7}
8
9pub struct PgPool;
10
11pub mod postgres {
12    pub struct PgRow;
13}
14
15pub struct SqlitePool;
16
17pub mod sqlite {
18    pub struct SqliteRow;
19}
20
21pub trait Row {}
22
23#[derive(Debug)]
24pub struct Error;
25
26#[derive(Debug)]
27pub enum SqlxError {
28    RowNotFound,
29}