1 2 3 4 5 6
use derive_more::Constructor; #[derive(Copy, Clone, Default, PartialEq, Eq, Hash, Constructor)] pub struct Cell<A> { pub value: A, }