[][src]Trait rusqlite::types::FromSql

pub trait FromSql: Sized {
    fn column_result(value: ValueRef) -> FromSqlResult<Self>;
}

A trait for types that can be created from a SQLite value.

Note that FromSql and ToSql are defined for most integral types, but not u64 or usize. This is intentional; SQLite returns integers as signed 64-bit values, which cannot fully represent the range of these types. Rusqlite would have to decide how to handle negative values: return an error or reinterpret as a very large postive numbers, neither of which is guaranteed to be correct for everyone. Callers can work around this by fetching values as i64 and then doing the interpretation themselves or by defining a newtype and implementing FromSql/ToSql for it.

Required methods

Loading content...

Implementations on Foreign Types

impl FromSql for NaiveDate[src]

"YYYY-MM-DD" => ISO 8601 calendar date without timezone.

impl FromSql for NaiveTime[src]

"HH:MM"/"HH:MM:SS"/"HH:MM:SS.SSS" => ISO 8601 time without timezone.

impl FromSql for NaiveDateTime[src]

"YYYY-MM-DD HH:MM:SS"/"YYYY-MM-DD HH:MM:SS.SSS" => ISO 8601 combined date and time without timezone. ("YYYY-MM-DDTHH:MM:SS"/"YYYY-MM-DDTHH:MM:SS.SSS" also supported)

impl FromSql for DateTime<Utc>[src]

RFC3339 ("YYYY-MM-DDTHH:MM:SS.SSS[+-]HH:MM") into DateTime<Utc>.

impl FromSql for DateTime<Local>[src]

RFC3339 ("YYYY-MM-DDTHH:MM:SS.SSS[+-]HH:MM") into DateTime<Local>.

impl FromSql for isize[src]

impl FromSql for i8[src]

impl FromSql for i16[src]

impl FromSql for i32[src]

impl FromSql for u8[src]

impl FromSql for u16[src]

impl FromSql for u32[src]

impl FromSql for i64[src]

impl FromSql for f64[src]

impl FromSql for bool[src]

impl FromSql for String[src]

impl FromSql for Vec<u8>[src]

impl<T: FromSql> FromSql for Option<T>[src]

impl FromSql for Value[src]

Deserialize text/blob to JSON Value.

impl FromSql for Timespec[src]

impl FromSql for Url[src]

Deserialize text to Url.

Loading content...

Implementors

impl FromSql for rusqlite::types::Value[src]

Loading content...