Name of the parent directory to copy the binary into
(&self)
| 89 | |
| 90 | /// Name of the parent directory to copy the binary into |
| 91 | pub fn parent_dir(&self) -> Option<&str> { |
| 92 | match self { |
| 93 | BinaryData::ExternalExtension(_) => Some("extensions"), |
| 94 | _ => None, |
| 95 | } |
| 96 | } |
| 97 | |
| 98 | /// Command to use to build each kind of binary |
| 99 | pub fn build_help(&self) -> &str { |
no outgoing calls
no test coverage detected