(
&self,
codex_speed: &mut CodexSpeed,
pi_path: Option<&mut Option<String>>,
open_claw_path: Option<&mut Option<String>>,
)
| 95 | } |
| 96 | |
| 97 | fn apply_agent_args( |
| 98 | &self, |
| 99 | codex_speed: &mut CodexSpeed, |
| 100 | pi_path: Option<&mut Option<String>>, |
| 101 | open_claw_path: Option<&mut Option<String>>, |
| 102 | ) { |
| 103 | if let Some(speed) = self.codex_speed { |
| 104 | *codex_speed = speed; |
| 105 | } |
| 106 | if let (Some(path), Some(pi_path)) = (self.pi_path, pi_path) { |
| 107 | *pi_path = Some(path.to_string()); |
| 108 | } |
| 109 | if let (Some(path), Some(open_claw_path)) = (self.open_claw_path, open_claw_path) { |
| 110 | *open_claw_path = Some(path.to_string()); |
| 111 | } |
| 112 | } |
| 113 | } |
| 114 | |
| 115 | fn shared_snapshot(shared: &SharedArgs) -> Value { |
no outgoing calls
no test coverage detected