Trait butane::FieldType[][src]

pub trait FieldType: ToSql + FromSql {
    type RefType: ToSql + ?Sized;

    const SQLTYPE: SqlType;
}
Expand description

Type suitable for being a database column.

Associated Types

Reference type. Used for ergonomics with String (which has reference type str). For most, it is Self

Associated Constants

Implementations on Foreign Types

Implementors