Type Definition iced::subscription::EventStream

source ·
pub type EventStream = Pin<Box<dyn Stream<Item = (Event, Status)> + Send + 'static, Global>>;
Expand description

A stream of runtime events.

It is the input of a Subscription in the native runtime.