itertools
0.13.0
CountItem
Required Associated Types
CItem
Required Methods
new
Object Safety
Implementors
In itertools::adaptors::coalesce
Trait
itertools
::
adaptors
::
coalesce
::
CountItem
Copy item path
source
·
[
−
]
pub trait CountItem<T> { type
CItem
; // Required method fn
new
(t: T) -> Self::
CItem
; }
Required Associated Types
§
source
type
CItem
Required Methods
§
source
fn
new
(t: T) -> Self::
CItem
Object Safety
§
This trait is
not
object safe
.
Implementors
§
source
§
impl<T>
CountItem
<T> for
NoCount
§
type
CItem
= T
source
§
impl<T>
CountItem
<T> for
WithCount
§
type
CItem
= (
usize
, T)