pubusetiberius_mappers_derive::TryFromRow;#[doc=include_str!("../../README.md")]#[cfg(doctest)]pubstructReadmeDocTests;/// Defines a conversion from a tiberius::Row to a struct.
pubtraitTryFromRow{/// Try to convert a tiberius::Row to a struct. Returns a Result using the tiberius::error::Error type.
fntry_from_row(row:tiberius::Row)->Result<Self, tiberius::error::Error>whereSelf: Sized;
}