Documentation


#[derive(Debug, Clone, PartialEq)]
pub enum OracleType {
}

#[derive(Debug, Clone, PartialEq)]
pub struct SqlValue {
}

pub enum Error {
}

pub trait ToSqlDefaltType {
    fn oratype_default() -> OracleType;
}

pub trait ToSql where Self: ToSqlDefaltType {
    fn oratype(&self) -> Result<OracleType, Error> {
        Ok(Self::oratype_default())
    }
}

fn main()
{
    println!("Hello World");
}