@@ -177,19 +177,19 @@ mod container {
177177 type Iter < ' a > = IterOwn < <C :: Container as columnar:: Container < C > >:: Borrowed < ' a > > ;
178178 fn iter < ' a > ( & ' a self ) -> Self :: Iter < ' a > {
179179 match self {
180- Column :: Typed ( t) => t. borrow ( ) . into_iter ( ) ,
181- Column :: Bytes ( b) => <<C :: Container as columnar:: Container < C > >:: Borrowed < ' a > as FromBytes >:: from_bytes ( & mut Indexed :: decode ( bytemuck:: cast_slice ( b) ) ) . into_iter ( ) ,
182- Column :: Align ( a) => <<C :: Container as columnar:: Container < C > >:: Borrowed < ' a > as FromBytes >:: from_bytes ( & mut Indexed :: decode ( a) ) . into_iter ( ) ,
180+ Column :: Typed ( t) => t. borrow ( ) . into_index_iter ( ) ,
181+ Column :: Bytes ( b) => <<C :: Container as columnar:: Container < C > >:: Borrowed < ' a > as FromBytes >:: from_bytes ( & mut Indexed :: decode ( bytemuck:: cast_slice ( b) ) ) . into_index_iter ( ) ,
182+ Column :: Align ( a) => <<C :: Container as columnar:: Container < C > >:: Borrowed < ' a > as FromBytes >:: from_bytes ( & mut Indexed :: decode ( a) ) . into_index_iter ( ) ,
183183 }
184184 }
185185
186186 type Item < ' a > = C :: Ref < ' a > ;
187187 type DrainIter < ' a > = IterOwn < <C :: Container as columnar:: Container < C > >:: Borrowed < ' a > > ;
188188 fn drain < ' a > ( & ' a mut self ) -> Self :: DrainIter < ' a > {
189189 match self {
190- Column :: Typed ( t) => t. borrow ( ) . into_iter ( ) ,
191- Column :: Bytes ( b) => <<C :: Container as columnar:: Container < C > >:: Borrowed < ' a > as FromBytes >:: from_bytes ( & mut Indexed :: decode ( bytemuck:: cast_slice ( b) ) ) . into_iter ( ) ,
192- Column :: Align ( a) => <<C :: Container as columnar:: Container < C > >:: Borrowed < ' a > as FromBytes >:: from_bytes ( & mut Indexed :: decode ( a) ) . into_iter ( ) ,
190+ Column :: Typed ( t) => t. borrow ( ) . into_index_iter ( ) ,
191+ Column :: Bytes ( b) => <<C :: Container as columnar:: Container < C > >:: Borrowed < ' a > as FromBytes >:: from_bytes ( & mut Indexed :: decode ( bytemuck:: cast_slice ( b) ) ) . into_index_iter ( ) ,
192+ Column :: Align ( a) => <<C :: Container as columnar:: Container < C > >:: Borrowed < ' a > as FromBytes >:: from_bytes ( & mut Indexed :: decode ( a) ) . into_index_iter ( ) ,
193193 }
194194 }
195195 }
0 commit comments