microcrates-bytes 0.4.8

Types and traits for working with bytes (with no_std support by default)
1
2
3
4
5
6
7
8
9
10
11
12
13
extern crate microcrates_bytes;

use microcrates_bytes::Buf;
use microcrates_bytes::buf::Cursor;

#[test]
fn long_take() {
    // Tests that take with a size greater than the buffer length will not
    // overrun the buffer. Regression test for #138.
    let buf = Cursor::new(b"hello world").take(100);
    assert_eq!(11, buf.remaining());
    assert_eq!(b"hello world", buf.bytes());
}