#![allow(unused)] use crate::temex::TemexError; use std::io::Read; pub trait Temexable { fn into_normal_form(self) -> Result; } // Temexable Normal Form #[derive(Clone)] pub struct TemexableNF { pub labels: Vec, pub data: Vec, } impl Temexable for TemexableNF { fn into_normal_form(self) -> Result { Ok(self) } }