From a1b94836aaada389a88062541b1ca431fd9fc9ee Mon Sep 17 00:00:00 2001 From: Mark Rowe Date: Tue, 27 May 2025 11:37:52 -0700 Subject: [Rust] Make LowLevelIL{Expression,Instruction} implement Copy --- rust/src/low_level_il/instruction.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'rust/src/low_level_il/instruction.rs') diff --git a/rust/src/low_level_il/instruction.rs b/rust/src/low_level_il/instruction.rs index ef546412..df9d1839 100644 --- a/rust/src/low_level_il/instruction.rs +++ b/rust/src/low_level_il/instruction.rs @@ -65,6 +65,7 @@ where T: FnMut(&LowLevelILExpression<'func, M, F, ValueExpr>) -> VisitorAction; } +#[derive(Copy, Clone)] pub struct LowLevelILInstruction<'func, M, F> where M: FunctionMutability, -- cgit v1.3.1