Skip to content

Commit

Permalink
Make Row::iter public
Browse files Browse the repository at this point in the history
Signed-off-by: Lucas Kent <rubickent@gmail.com>
  • Loading branch information
rukai committed Feb 28, 2024
1 parent ae054dc commit 68b3980
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cassandra/row.rs
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ impl<'a> Row<'a> {

/// Creates a new iterator for the specified row. This can be
/// used to iterate over columns in a row.
fn iter(&'a self) -> RowIterator<'a> {
pub fn iter(&'a self) -> RowIterator<'a> {
unsafe { RowIterator(cass_iterator_from_row(self.0), PhantomData) }
}
}
Expand Down

0 comments on commit 68b3980

Please sign in to comment.