(self: &Settings)
| 39 | |
| 40 | impl Settings { |
| 41 | pub fn get_shell_or_default(self: &Settings) -> Vec<String> { |
| 42 | self.shell.clone().unwrap_or_else(|| vec!["sh".to_owned(), "-c".to_owned()]) |
| 43 | } |
| 44 | } |
| 45 | |
| 46 | #[derive(Deserialize, Serialize, Debug, Clone)] |
no outgoing calls
no test coverage detected