Skip to content
This repository has been archived by the owner on Jan 11, 2021. It is now read-only.

Commit

Permalink
make trait public
Browse files Browse the repository at this point in the history
  • Loading branch information
andygrove committed Apr 21, 2018
1 parent 89b04f9 commit 76d4ab0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/record/api.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ impl Row {
}

/// Trait for type-safe convenient access to fields within a Row
trait RowAccessor {
pub trait RowAccessor {
fn get_bool(&self, i: usize) -> Result<bool>;
fn get_byte(&self, i: usize) -> Result<i8>;
fn get_short(&self, i: usize) -> Result<i16>;
Expand Down

0 comments on commit 76d4ab0

Please sign in to comment.