pub trait CargoItem: Sync + Send {
    fn weight(&self) -> f32;
    fn kind(&self) -> CargoItemKind;
}

Required Methods

Implementors