Giter Club home page Giter Club logo

Comments (2)

BurntSushi avatar BurntSushi commented on July 18, 2024

Regrettably, I don't see a clean answer here with the current API. The fundamental problem is that a TabWriter is coupled to io::Write---which supports arbitrary bytes---where as the Display infrastructure is a "purer" world that only supports UTF-8.

I guess the ideal API here would permit one to create a TabWriter that wraps a std::fmt::Write instead of a std::io::Write. Then I think you'd just need to do let f = TabWriter::new(f); and then things would be pretty natural from there.

The problem is that TabWriter as it exists today is wedded to std::io::Write.

Probably the right way to do this is to create a TabWriterBuilder that has from_io and from_fmt constructors. They would both produce a TabWriter<W>, but the former would have W: io::Write where as the latter would have W: fmt::Write. The TabWriter would then implement io::Write and fmt::Write itself as appropriate.

Unfortunately, that feels like a "tabwriter 2" kind of thing to me. I personally doubt I'll do that unless I run into the same use case as you. :-)

from tabwriter.

BartMassey avatar BartMassey commented on July 18, 2024

Thanks much for looking at this, and for the clear explanation. Mostly just wanted to make sure I wasn't missing something obvious.

from tabwriter.

Related Issues (12)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.