diff options
| author | Mark Rowe <mrowe@bdash.net.nz> | 2025-05-27 11:37:52 -0700 |
|---|---|---|
| committer | Mason Reed <mason@vector35.com> | 2025-05-30 19:17:10 -0400 |
| commit | a1b94836aaada389a88062541b1ca431fd9fc9ee (patch) | |
| tree | bf220ddde2df5b760ec9797476805608b838411c /rust/src/low_level_il/instruction.rs | |
| parent | 9b35dee6ecabc8e92294c2072f66676fff8b1046 (diff) | |
[Rust] Make LowLevelIL{Expression,Instruction} implement Copy
Diffstat (limited to 'rust/src/low_level_il/instruction.rs')
| -rw-r--r-- | rust/src/low_level_il/instruction.rs | 1 |
1 files changed, 1 insertions, 0 deletions
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, |
