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