File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -7,16 +7,16 @@ pub(crate) mod exprs;
77mod scalars;
88
99/// First-party trait for implementing conversion from DataFusion types to Vortex types.
10- pub ( crate ) trait TryFromDataFusion < D : ?Sized > : Sized {
10+ pub trait TryFromDataFusion < D : ?Sized > : Sized {
1111 fn try_from_df ( df : & D ) -> VortexResult < Self > ;
1212}
1313
1414/// First-party trait for implementing conversion from DataFusion types to Vortex types.
15- pub ( crate ) trait FromDataFusion < D : ?Sized > : Sized {
15+ pub trait FromDataFusion < D : ?Sized > : Sized {
1616 fn from_df ( df : & D ) -> Self ;
1717}
1818
1919/// First-party trait for implementing conversion from Vortex to DataFusion types.
20- pub ( crate ) trait TryToDataFusion < D > {
20+ pub trait TryToDataFusion < D > {
2121 fn try_to_df ( & self ) -> VortexResult < D > ;
2222}
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ use std::fmt::Debug;
88use datafusion_common:: stats:: Precision as DFPrecision ;
99use vortex:: stats:: Precision ;
1010
11- mod convert;
11+ pub mod convert;
1212mod persistent;
1313
1414pub use persistent:: * ;
You can’t perform that action at this time.
0 commit comments