pub mod ops;
mod ord;
#[macro_use]
#[doc(hidden)]
pub mod impls;
mod fold;
#[doc(hidden)]
pub mod structs {
pub mod data_types {
#[cfg(feature = "postgres")]
pub use pg::data_types::*;
}
}
pub use self::ord::SqlOrd;
pub use self::fold::Foldable;
use backend::{Backend, TypeMetadata};
use row::Row;
use std::error::Error;
use std::io::Write;
#[derive(Debug, Clone, Copy, Default)] pub struct Bool;
#[derive(Debug, Clone, Copy, Default)] pub struct SmallInt;
#[doc(hidden)] pub type Int2 = SmallInt;
#[derive(Debug, Clone, Copy, Default)] pub struct Integer;
#[doc(hidden)] pub type Int4 = Integer;
#[derive(Debug, Clone, Copy, Default)] pub struct BigInt;
#[doc(hidden)] pub type Int8 = BigInt;
#[derive(Debug, Clone, Copy, Default)] pub struct Float;
#[doc(hidden)] pub type Float4 = Float;
#[derive(Debug, Clone, Copy, Default)] pub struct Double;
#[doc(hidden)] pub type Float8 = Double;
#[derive(Debug, Clone, Copy, Default)] pub struct Numeric;
#[derive(Debug, Clone, Copy, Default)] pub struct Text;
pub type VarChar = Text;
#[doc(hidden)] pub type Varchar = VarChar;
#[derive(Debug, Clone, Copy, Default)] pub struct Binary;
#[derive(Debug, Clone, Copy, Default)] pub struct Date;
#[derive(Debug, Clone, Copy, Default)] pub struct Interval;
#[derive(Debug, Clone, Copy, Default)] pub struct Time;
#[derive(Debug, Clone, Copy, Default)] pub struct Timestamp;
#[derive(Debug, Clone, Copy, Default)] pub struct Nullable<T: NotNull>(T);
#[cfg(feature = "postgres")]
#[doc(inline)]
pub use pg::types::sql_types::*;
pub trait HasSqlType<ST>: TypeMetadata {
fn metadata() -> Self::TypeMetadata;
}
pub trait NotNull {
}
pub trait IntoNullable {
type Nullable;
}
impl<T: NotNull> IntoNullable for T {
type Nullable = Nullable<T>;
}
impl<T: NotNull> IntoNullable for Nullable<T> {
type Nullable = Nullable<T>;
}
pub trait FromSql<A, DB: Backend + HasSqlType<A>>: Sized {
fn from_sql(bytes: Option<&DB::RawValue>) -> Result<Self, Box<Error+Send+Sync>>;
}
pub trait FromSqlRow<A, DB: Backend + HasSqlType<A>>: Sized {
fn build_from_row<T: Row<DB>>(row: &mut T) -> Result<Self, Box<Error+Send+Sync>>;
}
#[cfg(feature = "unstable")]
include!("specialization_impls.rs");
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
pub enum IsNull {
Yes,
No,
}
pub trait ToSql<A, DB: Backend + HasSqlType<A>> {
fn to_sql<W: Write>(&self, out: &mut W) -> Result<IsNull, Box<Error+Send+Sync>>;
}
impl<'a, A, T, DB> ToSql<A, DB> for &'a T where
DB: Backend + HasSqlType<A>,
T: ToSql<A, DB>,
{
fn to_sql<W: Write>(&self, out: &mut W) -> Result<IsNull, Box<Error+Send+Sync>> {
(*self).to_sql(out)
}
}