diff --git a/src/types/entities/mod.rs b/src/types/entities/mod.rs index d314d82..5ceada6 100644 --- a/src/types/entities/mod.rs +++ b/src/types/entities/mod.rs @@ -132,7 +132,7 @@ pub trait IntoShared { fn into_shared(self) -> Shared; } -impl + Updateable + Clone + Debug + ?Sized> IntoShared for T { +impl IntoShared for T { fn into_shared(self) -> Shared { Arc::new(RwLock::new(self)) }