Location of the binary after building it
(&self)
| 81 | |
| 82 | /// Location of the binary after building it |
| 83 | pub fn binary_location(&self) -> &str { |
| 84 | match self { |
| 85 | BinaryData::Function(name) => name, |
| 86 | BinaryData::ExternalExtension(_) | BinaryData::InternalExtension(_) => "extensions", |
| 87 | } |
| 88 | } |
| 89 | |
| 90 | /// Name of the parent directory to copy the binary into |
| 91 | pub fn parent_dir(&self) -> Option<&str> { |
no outgoing calls
no test coverage detected