Skip to content

Commit

Permalink
Merge pull request #180 from rukai/pub_row_iter
Browse files Browse the repository at this point in the history
Make Row::iter public
  • Loading branch information
kw217 committed Feb 29, 2024
2 parents ae054dc + 68b3980 commit 20018c0
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 20018c0

Please sign in to comment.