File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -79,13 +79,16 @@ pub use list_view_array::*;
7979use crate :: iterator:: ArrayIter ;
8080
8181mod private {
82- /// Private marker trait to ensure [`Array`] can not be implemented outside this crate
82+ /// Private marker trait to ensure [`super:: Array`] can not be implemented outside this crate
8383 pub trait Sealed { }
8484
8585 impl < T : Sealed > Sealed for & T { }
8686}
8787
8888/// An array in the [arrow columnar format](https://arrow.apache.org/docs/format/Columnar.html)
89+ ///
90+ /// This trait is sealed as it is not intended for custom array types, rather only
91+ /// those defined in this crate.
8992pub trait Array : std:: fmt:: Debug + Send + Sync + private:: Sealed {
9093 /// Returns the array as [`Any`] so that it can be
9194 /// downcasted to a specific implementation.
You can’t perform that action at this time.
0 commit comments