1 2 3 4 5 6
use crate::Result; pub trait Jam: Sized { fn unjar(ty: u8, data: Vec<u8>) -> Result<Self>; fn jam_idx() -> u8; }