Trait pleingres::FromSql

source ·
pub trait FromSql<'a>: Sized {
    fn from_sql(s: &'a [u8]) -> Option<Self>;
}
Expand description

Trait to produce types from their SQL representation.

Required Methods

Deserialise from the given buffer.

Implementations on Foreign Types

Implementors