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>>>; }

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors