This commit is contained in:
Nikolay Kim 2023-09-05 15:49:49 +06:00
parent d06fded946
commit 19cc8ab315
9 changed files with 22 additions and 36 deletions

View file

@ -144,11 +144,7 @@ impl<'a, S> Copy for ServiceCtx<'a, S> {}
impl<'a, S> Clone for ServiceCtx<'a, S> {
#[inline]
fn clone(&self) -> Self {
Self {
idx: self.idx,
waiters: self.waiters,
_t: marker::PhantomData,
}
*self
}
}