Minor fixes (#6533)

* Minor fixes

* Fix compile errors
This commit is contained in:
Marcin S
2023-01-10 12:59:12 -05:00
committed by GitHub
parent 2d85a3881a
commit 3cf18f11ac
3 changed files with 4 additions and 7 deletions
@@ -196,10 +196,10 @@ where
// Helper traits and implementations:
impl<M, M1> Clone for NestingSender<M, M1>
impl<M, Mnested> Clone for NestingSender<M, Mnested>
where
M: 'static,
M1: 'static,
Mnested: 'static,
{
fn clone(&self) -> Self {
Self { sender: self.sender.clone(), conversion: self.conversion.clone() }