sqlx-firebird 0.1.0-beta.1

sqlx firebird driver
Documentation
//
// Copyright © 2023, RedSoft
// License: MIT
//

use std::fmt::{self, Display, Formatter};

use sqlx_core::type_info::TypeInfo;

#[derive(Debug, Clone, PartialEq)]
pub struct FbTypeInfo;

impl TypeInfo for FbTypeInfo {
    fn is_null(&self) -> bool {
        todo!()
    }

    fn name(&self) -> &str {
        todo!()
    }
}

impl Display for FbTypeInfo {
    fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
        f.pad(self.name())
    }
}