pub type MethodData<'a> = DataItem<'a, Method>;
enum MethodData<'a> { Str(&'a str), Bytes(&'a [u8]), Parsed(&'a Method), }