Open tv42 opened 3 days ago
Describe the bug
https://docs.rs/arrow-buffer/53.2.0/arrow_buffer/buffer/struct.Buffer.html#method.from_bytes
/// Auxiliary method to create a new Buffer pub fn from_bytes(bytes: Bytes) -> Self
This method is in the public API, but cannot be called.
Expected behavior
Any outside users looking at this are probably better served by Buffer::from_vec.
Buffer::from_vec
We should probably make from_bytes crate private, agreed
Describe the bug
https://docs.rs/arrow-buffer/53.2.0/arrow_buffer/buffer/struct.Buffer.html#method.from_bytes
This method is in the public API, but cannot be called.
Expected behavior
Any outside users looking at this are probably better served by
Buffer::from_vec
.