(&self)
| 150 | } |
| 151 | |
| 152 | pub fn bin_name(&self) -> Option<String> { |
| 153 | if self.cargo_opts.bin.len() > 1 { |
| 154 | return None; |
| 155 | } |
| 156 | self.cargo_opts.bin.first().map(|s| s.to_string()) |
| 157 | } |
| 158 | |
| 159 | pub fn build_environment(&self) -> Result<Environment, MetadataError> { |
| 160 | self.env_options.lambda_environment(&HashMap::new()) |
no outgoing calls
no test coverage detected