Add a bit more docs

This commit is contained in:
asonix 2023-09-09 16:34:16 -04:00
parent 9fe8331210
commit 24e0811bfb
3 changed files with 6 additions and 0 deletions

View file

@ -4,10 +4,12 @@ A simple library for creating and consuming async streams
## Usage
Add to your Cargo.toml
```bash
$ cargo add streem
```
Use in your application
```rust
use streem::IntoStreamer;

View file

@ -1,3 +1,5 @@
//! Types and methods for constructing streams
mod type_stack;
use std::{

View file

@ -1,3 +1,5 @@
//! Types and Traits for consuming Streams
use std::pin::Pin;
/// Enables consuming any Stream + Unpin