sqlx_firebird/column.rs
1//
2// Copyright © 2023, RedSoft
3// License: MIT
4//
5
6use sqlx_core::column::*;
7
8use crate::{FbTypeInfo, Firebird};
9
10#[derive(Debug, Clone)]
11pub struct FbColumn {}
12
13impl Column for FbColumn {
14 type Database = Firebird;
15
16 fn ordinal(&self) -> usize {
17 todo!()
18 }
19
20 fn name(&self) -> &str {
21 todo!()
22 }
23
24 fn type_info(&self) -> &FbTypeInfo {
25 todo!()
26 }
27}