Searched defs:I (Results 1 – 2 of 2) sorted by relevance
46 fn ident<I>() -> impl Parser<I, Output = String> in ident()54 fn integer<I>() -> impl Parser<I, Output = i64> in integer()70 fn register<I>() -> impl Parser<I, Output = i64> in register()80 fn operand<I>() -> impl Parser<I, Output = Operand> in operand()92 fn instruction<I>() -> impl Parser<I, Output = Instruction> in instruction()
77 impl<'i, I: Instruction> IntoBytes for &'i I { implementation