We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df27def commit c80b2a2Copy full SHA for c80b2a2
src/infra/vec.rs
@@ -2,10 +2,7 @@ pub trait VecExt<T> {
2
fn chain_push(self, item: T) -> Vec<T>;
3
}
4
5
-impl<T> VecExt<T> for Vec<T>
6
-where
7
- T: Clone,
8
-{
+impl<T> VecExt<T> for Vec<T> {
9
#[inline]
10
fn chain_push(mut self, item: T) -> Self {
11
self.push(item);
0 commit comments