| 73 | |
| 74 | #[derive(Debug)] |
| 75 | pub struct ExecuteInfo { |
| 76 | pub success: bool, |
| 77 | pub error: Option<ExecError>, |
| 78 | pub final_stack: FmtStack, |
| 79 | pub remaining_script: String, |
| 80 | pub last_opcode: Option<Opcode>, |
| 81 | pub stats: ExecStats, |
| 82 | } |
| 83 | |
| 84 | impl fmt::Display for ExecuteInfo { |
| 85 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { |
nothing calls this directly
no outgoing calls
no test coverage detected