☰
Collection
Collection
Required Associated Types
Item
Required Methods
add
Implementations on Foreign Types
BTreeSet<T>
Vec<T>
Implementors
In list_fn
Structs
CollectResult
Empty
FilterScanWrap
FilterWrap
FlatMapList
FlattenList
Id
ListIterator
ListSome
MapResultList
MapWrap
ScanState
ScanWrap
TakeList
Enums
FlatScanState
ListIteratorWrap
ListState
OptionList
Traits
Collect
Collection
Filter
FilterFn
FilterScan
FilterScanFn
FlatMap
FlatMapFn
FlatScan
FlatScanFn
Flatten
Fold
Iter
IterWrap
ListFn
Map
MapFn
MapResult
MapResultFn
ResultFn
Scan
ScanFn
Take
Type Definitions
FilterScanState
?
Trait
list_fn
::
Collection
source
·
[
−
]
pub trait Collection { type
Item
; fn
add
(self, item: Self::
Item
) -> Self; }
Required Associated Types
§
source
type
Item
Required Methods
§
source
fn
add
(self, item: Self::
Item
) -> Self
Implementations on Foreign Types
§
source
§
impl<T>
Collection
for
Vec
<T>
§
type
Item
= T
source
§
fn
add
(self, item: Self::
Item
) -> Self
source
§
impl<T:
Ord
>
Collection
for
BTreeSet
<T>
§
type
Item
= T
source
§
fn
add
(self, item: Self::
Item
) -> Self
Implementors
§