Trait Filter

Source
pub trait Filter<SendType, ReceiveType>:
    FnMut(ReceiveType, &mut IoWriter<SendType>) -> Option<ReceiveType>
    + Send
    + 'static { }

Implementors§

Source§

impl<T, SendType, ReceiveType> Filter<SendType, ReceiveType> for T
where T: FnMut(ReceiveType, &mut IoWriter<SendType>) -> Option<ReceiveType> + Send + 'static,