| 41 | |
| 42 | #[derive(Clone, Debug)] |
| 43 | pub struct Entry { |
| 44 | pub execution_model: ExecutionModel, |
| 45 | pub execution_modes: Vec<(ExecutionMode, ExecutionModeExtra)>, |
| 46 | pub name: Option<Symbol>, |
| 47 | } |
| 48 | |
| 49 | impl From<ExecutionModel> for Entry { |
| 50 | fn from(execution_model: ExecutionModel) -> Self { |
no outgoing calls
no test coverage detected