Impl ImplicitClone for Rc<T> where T: Sized (#2594)

This commit is contained in:
Nano 2022-04-09 17:33:16 +06:00 committed by GitHub
parent e2405298c6
commit ae26885589
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,7 +7,7 @@ use std::rc::Rc;
pub trait ImplicitClone: Clone {}
impl<T: ImplicitClone> ImplicitClone for Option<T> {}
impl<T> ImplicitClone for Rc<T> {}
impl<T: ?Sized> ImplicitClone for Rc<T> {}
impl ImplicitClone for NodeRef {}
impl<Comp: Component> ImplicitClone for Scope<Comp> {}