Trait sql::Typable [] [src]

pub trait Typable where
    Self: Sized
{ type Output; fn kind(self, value: Type) -> Self::Output; fn binary(self) -> Self::Output { ... } fn float(self) -> Self::Output { ... } fn integer(self) -> Self::Output { ... } fn string(self) -> Self::Output { ... } }

An object that can be assigend a type.

Associated Types

The type produced after setting a type.

Required Methods

Set the type.

Provided Methods

Set the type to Binary.

Set the type to Float.

Set the type to Integer.

Set the type to String.

Implementors