(&self)
| 63 | } |
| 64 | |
| 65 | pub(crate) fn remote_args(&self) -> Vec<String> { |
| 66 | // `guest_args` and `remote_args` are consistent with each other |
| 67 | self.guest_args() |
| 68 | } |
| 69 | |
| 70 | pub(crate) fn remote_command(&self, command: &str, arg: Option<&str>) -> bool { |
| 71 | let mut cmd = Command::new(clh_command("ch-remote")); |
no test coverage detected