pub trait FromElf {
type ElfContext;
// Required method
fn from_elf(
elf: Elf,
ctx: Self::ElfContext,
) -> Result<Self, TranspilerError>
where Self: Sized;
}
pub trait FromElf {
type ElfContext;
// Required method
fn from_elf(
elf: Elf,
ctx: Self::ElfContext,
) -> Result<Self, TranspilerError>
where Self: Sized;
}