Git Product home page Git Product logo

Comments (7)

danburkert avatar danburkert commented on July 16, 2024

I'd like to make the case for providing an impl Buf for Bytes.

I also expected the BytesMut : BufMut, Bytes : Buf symmetry to hold when I first started working with the crate. For my usecase of Bytes, which is decoding data structures, it would be extremely handy to have the Buf implementation built-in to Bytes, instead of having to wrap in a Cursor.

Towards that end, I put together a proof-of-concept showing that Buf can be implemented for Bytes using nothing but the current public API. The PoC is not meant to be an efficient implementation, but instead to prove that it can be done.

cc @carllerche

from bytes.

carllerche avatar carllerche commented on July 16, 2024

I had some thoughts on how to impl it while avoiding the allocation. I'll try to work on it.

However, the changes of types for the associate types of trait impls can't change until 0.5 :(

from bytes.

danburkert avatar danburkert commented on July 16, 2024

However, the changes of types for the associate types of trait impls can't change until 0.5 :(

I don't think those changes were strictly necessary, but it would be a nice simplification in the long run.

from bytes.

danburkert avatar danburkert commented on July 16, 2024

Has reserving the first 4 or 8 bytes of the allocated buffer for the reference count been considered? This would 'waste' 4 or 8 bytes in the non-shared case, but it cuts down an allocation in the shared case. I think it would also make efficiently impl'ing Buf easier.

from bytes.

carllerche avatar carllerche commented on July 16, 2024

#166 provides the advance function for Bytes and BytesMut. This unblocks implementing Buf for these two types. The actual implementation of Buf has to be done in 0.5.

from bytes.

carllerche avatar carllerche commented on July 16, 2024

Is this still true if Bytes impls Buf and BytesMut impls BufMut?

from bytes.

xoac avatar xoac commented on July 16, 2024

Shouldn't this be closed? In 0.5.x:

  • Buf is implemented for Bytes and for BytesMut.
  • BufMut is implemented for BytesMut

from bytes.

Related Issues (20)

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.