Skip to content

Commit d1f78f6

Browse files
committed
1 parent 938deac commit d1f78f6

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

noria/src/view/results.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,10 @@ pub struct Results {
1111
}
1212

1313
impl Results {
14-
pub(crate) fn new(results: Vec<Vec<DataType>>, columns: Arc<[String]>) -> Self {
14+
// NOTE: should be pub(crate), but that triggers:
15+
// https://github.com/rust-lang/rust/issues/69785
16+
#[doc(hidden)]
17+
pub fn new(results: Vec<Vec<DataType>>, columns: Arc<[String]>) -> Self {
1518
Self { results, columns }
1619
}
1720

0 commit comments

Comments
 (0)