☰
Collection
Required Associated Types
Item
Required Methods
add
Implementations on Foreign Types
BTreeSet<T>
Vec<T>
Implementors
In list_fn
?
Trait
list_fn
::
Collection
source
·
[
−
]
pub trait Collection { type
Item
; // Required method 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:
Ord
>
Collection
for
BTreeSet
<T>
§
type
Item
= T
source
§
fn
add
(self, item: Self::
Item
) -> Self
source
§
impl<T>
Collection
for
Vec
<T>
§
type
Item
= T
source
§
fn
add
(self, item: Self::
Item
) -> Self
Implementors
§