sqlx-firebird 0.1.0-beta.1

sqlx firebird driver
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//
// Copyright © 2023, RedSoft
// License: MIT
//

use std::iter::{Extend, IntoIterator};

#[derive(Debug, Default)]
pub struct FbQueryResult;

impl Extend<FbQueryResult> for FbQueryResult {
    fn extend<T: IntoIterator<Item = FbQueryResult>>(&mut self, iter: T) {
        todo!()
    }
}