chore: clippy

This commit is contained in:
Greg Johnston
2025-07-17 19:09:32 -04:00
parent 4c95cddca8
commit d7bc6715a6

View File

@@ -7,6 +7,7 @@ use tachys::{erased::Erased, view::any_view::AnyView};
pub struct AnyChooseView {
value: Erased,
clone: fn(&Erased) -> AnyChooseView,
#[allow(clippy::type_complexity)]
choose: fn(Erased, Erased) -> Pin<Box<dyn Future<Output = AnyView>>>,
data: fn(&Erased) -> Erased,
preload: for<'a> fn(&'a Erased) -> Pin<Box<dyn Future<Output = ()> + 'a>>,