diff --git a/src/lib.rs b/src/lib.rs index b9ba1e8..73f5fc8 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -5,7 +5,6 @@ use std::io::Seek; #[derive(Debug)] pub enum KaitaiError<'a> { InvalidContents { actual: &'a [u8] }, - InvalidKey, IoError(io::Error), } @@ -25,13 +24,6 @@ pub trait KaitaiStruct<'a> fn new(stream: &mut S) -> Result where Self: Sized; - - /* - fn read>( - &mut self, - - ) - */ } pub trait KaitaiStream {