@@ -180,19 +180,19 @@ mod container {
180180 type Iter < ' a > = IterOwn < <C :: Container as columnar:: Container < C > >:: Borrowed < ' a > > ;
181181 fn iter < ' a > ( & ' a self ) -> Self :: Iter < ' a > {
182182 match self {
183- Column :: Typed ( t) => t. borrow ( ) . into_iter ( ) ,
184- Column :: Bytes ( b) => <<C :: Container as columnar:: Container < C > >:: Borrowed < ' a > as FromBytes >:: from_bytes ( & mut Indexed :: decode ( bytemuck:: cast_slice ( b) ) ) . into_iter ( ) ,
185- Column :: Align ( a) => <<C :: Container as columnar:: Container < C > >:: Borrowed < ' a > as FromBytes >:: from_bytes ( & mut Indexed :: decode ( a) ) . into_iter ( ) ,
183+ Column :: Typed ( t) => t. borrow ( ) . into_index_iter ( ) ,
184+ 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 ( ) ,
185+ Column :: Align ( a) => <<C :: Container as columnar:: Container < C > >:: Borrowed < ' a > as FromBytes >:: from_bytes ( & mut Indexed :: decode ( a) ) . into_index_iter ( ) ,
186186 }
187187 }
188188
189189 type Item < ' a > = C :: Ref < ' a > ;
190190 type DrainIter < ' a > = IterOwn < <C :: Container as columnar:: Container < C > >:: Borrowed < ' a > > ;
191191 fn drain < ' a > ( & ' a mut self ) -> Self :: DrainIter < ' a > {
192192 match self {
193- Column :: Typed ( t) => t. borrow ( ) . into_iter ( ) ,
194- Column :: Bytes ( b) => <<C :: Container as columnar:: Container < C > >:: Borrowed < ' a > as FromBytes >:: from_bytes ( & mut Indexed :: decode ( bytemuck:: cast_slice ( b) ) ) . into_iter ( ) ,
195- Column :: Align ( a) => <<C :: Container as columnar:: Container < C > >:: Borrowed < ' a > as FromBytes >:: from_bytes ( & mut Indexed :: decode ( a) ) . into_iter ( ) ,
193+ Column :: Typed ( t) => t. borrow ( ) . into_index_iter ( ) ,
194+ 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 ( ) ,
195+ Column :: Align ( a) => <<C :: Container as columnar:: Container < C > >:: Borrowed < ' a > as FromBytes >:: from_bytes ( & mut Indexed :: decode ( a) ) . into_index_iter ( ) ,
196196 }
197197 }
198198 }
0 commit comments