Merge pull request #54 from apoelstra/no-impl-bytebuf

Remove `impl Into<Vec<u8>> for ByteBuf` since it causes a compile error
This commit is contained in:
Erick Tryzelaar 2015-04-12 10:32:36 -07:00
commit d36879f5ee

View File

@ -97,12 +97,6 @@ impl AsMut<[u8]> for ByteBuf {
}
}
impl Into<Vec<u8>> for ByteBuf {
fn into(self) -> Vec<u8> {
self.bytes
}
}
impl ops::Deref for ByteBuf {
type Target = [u8];