File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed
Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 11// SPDX-License-Identifier: Apache-2.0
22// SPDX-FileCopyrightText: Copyright the Vortex contributors
33
4+ //! Definition and implementation of variable-length binary types.
5+ //!
6+ //! All types are wrappers around the [`VarBinVector`] type, which is represented internally by
7+ //! `BinaryView`s. `BinaryView`s are identical to the `BinaryView` type defined by the Arrow
8+ //! [specification](https://arrow.apache.org/docs/format/Columnar.html#variable-size-binary-view-layout),
9+ //! which are inspired by "German" strings.
10+
411pub use types:: * ;
512pub use vector:: * ;
613pub use vector_mut:: * ;
Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ pub trait VarBinTypeUpcast {
8585
8686/// Private module to seal the [`VarBinType`] trait.
8787mod private {
88- /// Sealed trait to prevent external implementations of [`VarBinType`].
88+ /// Sealed trait to prevent external implementations of [`VarBinType`](super::VarBinType) .
8989 pub trait Sealed { }
9090
9191 impl Sealed for super :: StringType { }
You can’t perform that action at this time.
0 commit comments