Remove some stray Send bounds

This commit is contained in:
Antonio Scandurra 2023-11-02 09:18:16 +01:00
parent 18fcb41292
commit b2c7ddc41f
3 changed files with 14 additions and 14 deletions

View file

@ -113,7 +113,7 @@ pub trait VisualContext: Context {
build_view: impl FnOnce(&mut ViewContext<'_, V>) -> V,
) -> Self::Result<View<V>>
where
V: 'static + Send + Render;
V: Render;
}
pub trait Entity<T>: Sealed {