pub trait Signal {
    type Item;

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

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors