#async-io #tokio #io #async #future #peek

peekable

Peekable reader and async reader, which enhance your network programming experience

3 releases

0.2.4 Dec 20, 2024
0.2.3 Mar 21, 2024
0.2.1 Feb 9, 2024
0.2.0 Jan 29, 2024
0.1.0 Jan 24, 2024

#686 in Asynchronous

Download history 7/week @ 2024-09-13 22/week @ 2024-09-20 13/week @ 2024-09-27 4/week @ 2024-10-04 2/week @ 2024-10-11 7/week @ 2024-10-18 3/week @ 2024-10-25 1/week @ 2024-11-01 1/week @ 2024-11-08 24/week @ 2024-11-15 16/week @ 2024-11-22 12/week @ 2024-11-29 20/week @ 2024-12-06 11/week @ 2024-12-13 1197/week @ 2024-12-20 1010/week @ 2024-12-27

2,242 downloads per month
Used in 8 crates (3 directly)

MIT/Apache

97KB
1.5K SLoC

Peekable

Peekable reader and async reader, which enhance your network programming experience.

github LoC Build codecov

docs.rs crates.io crates.io license

English | 简体中文

Installation

  • Std

    [dependencies]
    peekable = "0.2"
    
  • Tokio I/O

    [dependencies]
    peekable = { version = "0.2", features = ["tokio"] }
    
  • Futures I/O

    [dependencies]
    peekable = { version = "0.2", features = ["future"] }
    

Examples

  • Std

    use std::{net::TcpStream, io::Read};
    use peekable::Peekable;
    
    let conn = TcpStream::connect("127.0.0.1:8080").unwrap();
    let mut peekable = Peekable::from(conn);
    
    let mut peeked = [0; 16];
    peekable.peek_exact(&mut peeked).unwrap();
    
    let mut readed = [0; 16];
    peekable.read_exact(&mut readed).unwrap();
    
    assert_eq!(peeked, readed);
    
  • Tokio I/O

    use tokio::{net::TcpStream, io::AsyncReadExt};
    use peekable::tokio::AsyncPeekable;
    
    let conn = TcpStream::connect("127.0.0.1:8080").await.unwrap();
    let mut peekable = AsyncPeekable::from(conn);
    
    let mut peeked = [0; 16];
    peekable.peek_exact(&mut peeked).await.unwrap();
    
    let mut readed = [0; 16];
    peekable.read_exact(&mut readed).await.unwrap();
    
    assert_eq!(peeked, readed);
    
  • Futures I/O

    use async_std::net::TcpStream;
    use futures::AsyncReadExt;
    use peekable::future::AsyncPeekable;
    
    let conn = TcpStream::connect("127.0.0.1:8080").await.unwrap();
    let mut peekable = AsyncPeekable::from(conn);
    
    let mut peeked = [0; 16];
    peekable.peek_exact(&mut peeked).await.unwrap();
    
    let mut readed = [0; 16];
    peekable.read_exact(&mut readed).await.unwrap();
    
    assert_eq!(peeked, readed);
    

License

peekable is under the terms of both the MIT license and the Apache License (Version 2.0).

See LICENSE-APACHE, LICENSE-MIT for details.

Copyright (c) 2024 Al Liu.

Dependencies

~0–5.5MB
~25K SLoC