We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 938deac commit d1f78f6Copy full SHA for d1f78f6
noria/src/view/results.rs
@@ -11,7 +11,10 @@ pub struct Results {
11
}
12
13
impl Results {
14
- pub(crate) fn new(results: Vec<Vec<DataType>>, columns: Arc<[String]>) -> Self {
+ // 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 {
18
Self { results, columns }
19
20
0 commit comments