diff --git a/noria/src/view/results.rs b/noria/src/view/results.rs index 480db8fab..d9884d9ed 100644 --- a/noria/src/view/results.rs +++ b/noria/src/view/results.rs @@ -11,7 +11,10 @@ pub struct Results { } impl Results { - pub(crate) fn new(results: Vec>, columns: Arc<[String]>) -> Self { + // NOTE: should be pub(crate), but that triggers: + // https://github.com/rust-lang/rust/issues/69785 + #[doc(hidden)] + pub fn new(results: Vec>, columns: Arc<[String]>) -> Self { Self { results, columns } }