You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I have a Vec<u8> that I want to turn into a BitVec, currently I need to call from_bytes, which copies the bytes. I'd love to have a from_vec (or an impl From<Vec<u8>> for BitVec) that takes ownership of the Vec, so it doesn't need to copy.
If I have a
Vec<u8>that I want to turn into aBitVec, currently I need to callfrom_bytes, which copies the bytes. I'd love to have afrom_vec(or animpl From<Vec<u8>> for BitVec) that takes ownership of theVec, so it doesn't need to copy.