- Jul 16, 2019
-
-
Bruce Mitchener authored
-
- Jun 11, 2019
-
-
Sean McArthur authored
- Renames `bytes_vec` to `bytes_vectored` and `bytes_vec_mut` to `bytes_vectored_mut`.
-
- Jun 10, 2019
-
-
Sean McArthur authored
- Removes `slice_to` and `slice_from`.
-
Taiki Endo authored
-
- Jun 07, 2019
-
-
Sean McArthur authored
-
Sean McArthur authored
-
Sean McArthur authored
-
- Jun 06, 2019
-
-
YetAnotherMinion authored
-
Sean McArthur authored
-
Sean McArthur authored
-
Sean McArthur authored
-
- Apr 02, 2019
-
-
Pavel Strakhov authored
-
- Mar 29, 2019
-
-
南浦月 authored
-
- Mar 06, 2019
-
-
Carl Lerche authored
-
Michal 'vorner' Vaner authored
-
- Feb 27, 2019
-
-
Sangguk Lee authored
-
- Jan 30, 2019
-
-
南浦月 authored
-
- Jan 28, 2019
-
-
Dax Huiberts authored
-
- Dec 21, 2018
-
-
Ralf Jung authored
-
- Nov 26, 2018
-
-
Ralf Jung authored
-
- Nov 17, 2018
-
-
Carl Lerche authored
-
Ralf Jung authored
Shared references assert immutability, so any concurrent access would be UB disregarding data race concerns.
-
Michal 'vorner' Vaner authored
There's no reason the user should be forced to wrap it in BufReader in case the trait is needed, because the Reader has all the bits for supporting it naturally.
-
Michal 'vorner' Vaner authored
The property the Buff and BuffMut can return shorter slice is quite an important detail. Nevertheless, while it is mentioned in the documentation, the wording makes it relatively easy to overlook. This tries to bring more attention to it.
-
Carl Lerche authored
-
- Sep 04, 2018
-
-
Carl Lerche authored
-
- Sep 03, 2018
-
-
Carl Lerche authored
-
Carl Lerche authored
-
- Sep 02, 2018
-
-
Federico Mena Quintero authored
This lets us take Bytes and a &[u8] slice that is contained in it, and create a new Bytes that corresponds to that subset slice. Closes #198
-
- Jul 23, 2018
-
-
Carl Lerche authored
-
- Jul 13, 2018
-
-
Carl Lerche authored
-
Sean McArthur authored
-
Rafael Ávila de Espíndola authored
With this if foo is a mutable slice, it is possible to do foo.into_buf().put_u32_le(42); Before this patch into_buf would create a Cursor<&'a [u8]> and it would not be possible to write into it.
-
Roman authored
-
Carl Lerche authored
-
Sean McArthur authored
-
Geoffry Song authored
I noticed that the bare `[u8]` made rustdoc nightly unhappy.
-
Rafael Ávila de Espíndola authored
With this if foo is a mutable slice, it is possible to do foo.into_buf().put_u32_le(42); Before this patch into_buf would create a Cursor<&'a [u8]> and it would not be possible to write into it.
-
- Jul 05, 2018
-
-
Roman authored
-
- Jul 03, 2018
-
-
Sean McArthur authored
- Clones when the kind is INLINE or STATIC are sped up by over double. - Clones when the kind is ARC are spec up by about 1/3.
-