From c08ee8be82d8e8db0312944b0b4d802d570086d0 Mon Sep 17 00:00:00 2001 From: Pro Date: Wed, 20 Sep 2017 15:34:06 +0200 Subject: [PATCH] Export RowIndex trait to allow external code to be generic over what can index be --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 32740b3..b6b1da8 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -82,7 +82,7 @@ use cache::StatementCache; pub use statement::Statement; use statement::StatementCrateImpl; -pub use row::{Row, Rows, MappedRows, AndThenRows}; +pub use row::{Row, Rows, MappedRows, AndThenRows, RowIndex}; use row::RowsCrateImpl; #[allow(deprecated)]