pub trait OpAccess {
type Op;
type Error: Debug + Display;
// Required method
fn op_access(
&mut self,
index: usize,
) -> Option<Result<Self::Op, Self::Error>>;
}
Expand description
Types that provide access to operations.
Implementations are included for &[Op]
, BytecodeMapped
and BytecodeMappedLazy
.