1
Fork 0
This commit is contained in:
Alex Helfet 2017-12-29 23:50:55 +00:00
parent a989b7e795
commit cc7b8ca07a

View file

@ -15,6 +15,9 @@
//! transport starts operating without losses again the decoder should //! transport starts operating without losses again the decoder should
//! return new uncorrupted frames. //! return new uncorrupted frames.
//! //!
//! See the `bytes` or `typed` modules to send and receive raw slices
//! of bytes or serialized structs respectively.
//!
//! ## Encoding //! ## Encoding
//! //!
//! Currently the encoding is: //! Currently the encoding is:
@ -73,9 +76,6 @@
//! containing a heap-allocated value instead. Consequently `encode_*` //! containing a heap-allocated value instead. Consequently `encode_*`
//! and `decode_*` variants that require this are only available with //! and `decode_*` variants that require this are only available with
//! the `use_std` Cargo feature. //! the `use_std` Cargo feature.
//!
//! See the `bytes` or `typed` modules to send and receive raw slices
//! of bytes or serialized structs respectively.
#![deny(warnings)] #![deny(warnings)]
#![cfg_attr(not(feature = "use_std"), no_std)] #![cfg_attr(not(feature = "use_std"), no_std)]