Use Self::State in children_any and child_any

This commit is contained in:
Marshall Bowers 2023-10-10 11:26:18 -04:00
parent f76c9041bb
commit 40d58c9bc3

View File

@ -50,7 +50,7 @@ pub trait ParentElement {
// We'll (hopefully) be moving away from this in the future.
fn children_any<I>(mut self, children: I) -> Self
where
I: IntoIterator<Item = AnyElement<S>>,
I: IntoIterator<Item = AnyElement<Self::State>>,
Self: Sized,
{
self.children_mut().extend(children.into_iter());
@ -61,7 +61,7 @@ pub trait ParentElement {
// of building UI on top of the current version of gpui2.
//
// We'll (hopefully) be moving away from this in the future.
fn child_any(mut self, children: AnyElement<S>) -> Self
fn child_any(mut self, children: AnyElement<Self::State>) -> Self
where
Self: Sized,
{