implement Buf and BufMut for Either (#225)

This commit is contained in:
Carl Lerche
2018-09-03 10:23:00 -07:00
committed by GitHub
parent 79f05591c9
commit ad35fbef03
4 changed files with 97 additions and 0 deletions
+4
View File
@@ -99,3 +99,7 @@ pub use byteorder::{ByteOrder, BigEndian, LittleEndian};
#[cfg(feature = "serde")]
#[doc(hidden)]
pub mod serde;
// Optional `Either` support
#[cfg(feature = "either")]
mod either;