From af5bd800348e41ffbfcceeff77df8c07a889b5b4 Mon Sep 17 00:00:00 2001 From: Bradlee Speice Date: Tue, 16 Apr 2019 14:55:20 -0400 Subject: [PATCH] Minor cleanup --- src/lib.rs | 8 -------- 1 file changed, 8 deletions(-) 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 {