Trait futures_signals::signal_map::SignalMap[][src]

#[must_use = "SignalMaps do nothing unless polled"]
pub trait SignalMap {
    type Key;
    type Value;
    fn poll_map_change(
        self: Pin<&mut Self>,
        cx: &mut Context<'_>
    ) -> Poll<Option<MapDiff<Self::Key, Self::Value>>>; }

Associated Types

Required methods

Implementations on Foreign Types

Implementors