Hello. I was looking at base64::write::EncoderStringWriter, which requires StrConsumer. However, it is only implemented for String while looking basically as core::fmt::Write.
Could I either provide blanket impl<W: Write> StrConsumer for W (which shouldn't be breaking) or rip it out and switch to Write trait directly (breaking)?
Hello. I was looking at
base64::write::EncoderStringWriter, which requiresStrConsumer. However, it is only implemented forStringwhile looking basically ascore::fmt::Write.Could I either provide blanket
impl<W: Write> StrConsumer for W(which shouldn't be breaking) or rip it out and switch toWritetrait directly (breaking)?