pub trait GroupedValue: Debug + Clone { type Item; fn new() -> Self; fn merge(&mut self, value: Self::Item); }
impl<A> Write for Vec<u8, A> where A: Allocator,