File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 33
44use std:: any:: Any ;
55use std:: fmt:: { Debug , Display , Formatter } ;
6- use std:: ops:: Deref ;
76use std:: sync:: Arc ;
87
98use arcref:: ArcRef ;
109use vortex_buffer:: ByteBuffer ;
1110use vortex_dtype:: DType ;
12- use vortex_error:: { VortexExpect , VortexResult , vortex_bail , vortex_err } ;
11+ use vortex_error:: { vortex_bail , vortex_err , VortexExpect , VortexResult } ;
1312
1413use crate :: serde:: ArrayChildren ;
1514use crate :: vtable:: { EncodeVTable , VTable } ;
@@ -174,7 +173,10 @@ impl dyn DynVTable + '_ {
174173}
175174
176175pub trait ArrayVTableExt {
176+ /// Wraps the vtable into an `ArrayVTable` by static reference.
177177 fn to_array_vtable ( & ' static self ) -> ArrayVTable ;
178+
179+ /// Wraps the vtable into an `ArrayVTable` by owned reference.
178180 fn into_array_vtable ( self ) -> ArrayVTable ;
179181}
180182
You can’t perform that action at this time.
0 commit comments