1 2 3 4 5 6 7 8 9 10 11 12 13
use implicit_clone06::ImplicitClone; use crate::web::{Handle, WebImpl}; impl<H> ImplicitClone for Handle<H> where H: WebImpl, { #[inline] fn implicit_clone(&self) -> Self { self.clone() } }