We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7b9355e + 67bf22d commit 1601be5Copy full SHA for 1601be5
2 files changed
diesel/src/lib.rs
@@ -30,7 +30,6 @@ pub mod migrations;
30
mod query_dsl;
31
pub mod query_source;
32
pub mod result;
33
-#[doc(hidden)]
34
pub mod row;
35
36
pub mod helper_types {
diesel/src/row.rs
@@ -1,5 +1,9 @@
1
use backend::Backend;
2
3
+/// The row trait which is used for [`FromSqlRow`][]. Apps should not need to
4
+/// concern themselves with this trait.
5
+///
6
+/// [`FromSqlRow`]: ../types/trait.FromSqlRow.html
7
pub trait Row<DB: Backend> {
8
fn take(&mut self) -> Option<&DB::RawValue>;
9
fn next_is_null(&self, count: usize) -> bool;
0 commit comments