pub trait ValidationFn: FnMut(&mut Vec<Box<dyn Drawable>>) -> bool + 'static { // Required method fn clone_box(&self) -> Box<dyn ValidationFn>; }
source