From 4123ca032913e2224b1baaaec540a09af39e45fd Mon Sep 17 00:00:00 2001 From: Alex Helfet Date: Thu, 28 Dec 2017 18:44:30 +0000 Subject: [PATCH] Add TODOs for untyped usage examples. --- framed/src/lib.rs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/framed/src/lib.rs b/framed/src/lib.rs index d6a6c81..12394c6 100644 --- a/framed/src/lib.rs +++ b/framed/src/lib.rs @@ -82,6 +82,15 @@ //! For sending or receiving a stream of frames, consider the `Reader` //! and `Writer` structs that wrap an `io::Read` or `io::Write` //! instance. +//! +//! ## Example usage from a std crate +//! +//! TODO. +//! +//! ## Example usage from a no_std crate +//! +//! TODO. +//! #![deny(warnings)] #![cfg_attr(not(feature = "use_std"), no_std)]