pub trait QueryCallback: FnMut(i32) -> bool { }

Implementors§

source§

impl<F> QueryCallback for Fwhere F: FnMut(i32) -> bool,