use crate::fitter::Fitter; pub struct Item { pub fitter: Box, } impl Item { pub fn new(fitter: Box) -> Self { Item { fitter } } }