pub trait Container { fn read_container(&self) -> T; } pub trait Add { fn add(&mut self, other: &mut T) -> &mut T; } pub mod t_array; pub mod f_string; pub mod fnv;