1 2 3 4 5 6 7
use crate::traits::Monoid; impl Monoid for String { fn mempty() -> Self { String::default() } }