Address RFC 1214 warning

This commit is contained in:
John Gallagher 2015-11-03 11:27:52 -05:00
parent 3e8530a364
commit 420c4d4d9f

View File

@ -74,7 +74,7 @@ pub trait ToSql {
} }
/// A trait for types that can be created from a SQLite value. /// A trait for types that can be created from a SQLite value.
pub trait FromSql { pub trait FromSql: Sized {
unsafe fn column_result(stmt: *mut sqlite3_stmt, col: c_int) -> SqliteResult<Self>; unsafe fn column_result(stmt: *mut sqlite3_stmt, col: c_int) -> SqliteResult<Self>;
/// FromSql types can implement this method and use sqlite3_column_type to check that /// FromSql types can implement this method and use sqlite3_column_type to check that