sqlx_firebird/
query_result.rs

1//
2// Copyright © 2023, RedSoft
3// License: MIT
4//
5
6use std::iter::{Extend, IntoIterator};
7
8#[derive(Debug, Default)]
9pub struct FbQueryResult;
10
11impl Extend<FbQueryResult> for FbQueryResult {
12    fn extend<T: IntoIterator<Item = FbQueryResult>>(&mut self, iter: T) {
13        todo!()
14    }
15}