diff --git a/src/io/frame.rs b/src/io/frame.rs index 915e26b27..a5ddbd405 100644 --- a/src/io/frame.rs +++ b/src/io/frame.rs @@ -395,6 +395,8 @@ impl Sink for FramedWrite { /// A unified `Stream` and `Sink` interface to an underlying `Io` object, using /// the `Encode` and `Decode` traits to encode and decode frames. +/// +/// You can acquire a `Framd` instance by using the `Io::framed` adapter. pub struct Framed { upstream: T, read_state: ReadState,