pub trait Tagged<T: Clone = i64> { // Provided methods fn tag(&self) -> Option<T> { ... } fn tag_str(&self) -> String where T: Display { ... } }