pub trait SignalVec {
    type Item;

    fn poll_vec_change(
        self: Pin<&mut Self>,
        cx: &mut Context<'_>
    ) -> Poll<Option<VecDiff<Self::Item>>>; }

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors