From 296d86b2833e4e2ab62d425ece2ea0f0f8ce4b77 Mon Sep 17 00:00:00 2001 From: Kostya Shishkov Date: Sun, 28 May 2017 10:53:43 +0200 Subject: [PATCH] make ByteIOResult public --- src/io/byteio.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/io/byteio.rs b/src/io/byteio.rs index 497e8cc..f481693 100644 --- a/src/io/byteio.rs +++ b/src/io/byteio.rs @@ -13,7 +13,7 @@ pub enum ByteIOError { SeekError, } -type ByteIOResult = Result; +pub type ByteIOResult = Result; pub trait ByteIO { fn read_buf(&mut self, buf: &mut [u8]) -> ByteIOResult; -- 2.30.2