Remove #[inline] from a generic impl
This commit is contained in:
parent
3cf70fa533
commit
527d7376be
@ -525,7 +525,6 @@ impl<'stmt> Container for PostgresRow<'stmt> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
impl<'stmt, I: RowIndex, T: FromSql> Index<I, T> for PostgresRow<'stmt> {
|
impl<'stmt, I: RowIndex, T: FromSql> Index<I, T> for PostgresRow<'stmt> {
|
||||||
#[inline]
|
|
||||||
fn index(&self, idx: &I) -> T {
|
fn index(&self, idx: &I) -> T {
|
||||||
let idx = idx.idx(self.stmt);
|
let idx = idx.idx(self.stmt);
|
||||||
FromSql::from_sql(&self.stmt.result_desc[idx].ty, &self.data[idx])
|
FromSql::from_sql(&self.stmt.result_desc[idx].ty, &self.data[idx])
|
||||||
|
Loading…
Reference in New Issue
Block a user