We already have `impl <T: Log> Log for Box<T>`. It would be cool to have this for more types, for example `Cow<'static, T: Log>`, `Rc` etc. I'd have to double-check, but this may even be generalizable to `impl <T, R> Log for T where T: Borrow<R>, R: Log`
We already have
impl <T: Log> Log for Box<T>. It would be cool to have this for more types, for exampleCow<'static, T: Log>,Rcetc.I'd have to double-check, but this may even be generalizable to
impl <T, R> Log for T where T: Borrow<R>, R: Log