Name of the binary to copy inside the zip archive
(&self)
| 68 | |
| 69 | /// Name of the binary to copy inside the zip archive |
| 70 | pub fn binary_name(&self) -> &str { |
| 71 | match self { |
| 72 | BinaryData::Function(_) => "bootstrap", |
| 73 | BinaryData::ExternalExtension(name) | BinaryData::InternalExtension(name) => name, |
| 74 | } |
| 75 | } |
| 76 | |
| 77 | /// Name of the zip archive |
| 78 | pub fn zip_name(&self) -> String { |
no outgoing calls
no test coverage detected