allocator_api2
0.2.20
BoxIter
Required Associated Types
Item
Required Methods
last
Implementors
In allocator_api2::stable::boxed
Trait
allocator_api2
::
stable
::
boxed
::
BoxIter
Copy item path
source
·
[
−
]
trait BoxIter { type
Item
; // Required method fn
last
(self) ->
Option
<Self::
Item
>; }
Required Associated Types
§
source
type
Item
Required Methods
§
source
fn
last
(self) ->
Option
<Self::
Item
>
Implementors
§
source
§
impl<I:
Iterator
+ ?
Sized
, A:
Allocator
>
BoxIter
for
Box
<I, A>
§
type
Item
= <I as
Iterator
>::
Item