pub type CompileFut<X> = Pin<Box<dyn Future<Output = Result<GuiW<X>>> + Send + 'static>>;
Future type for widget compilation (avoids infinite-size async fn).
pub struct CompileFut<X> { /* private fields */ }