(reason: &str, message: &str)
| 1603 | } |
| 1604 | |
| 1605 | fn error_condition(reason: &str, message: &str) -> DriverCondition { |
| 1606 | DriverCondition { |
| 1607 | r#type: "Ready".to_string(), |
| 1608 | status: "False".to_string(), |
| 1609 | reason: reason.to_string(), |
| 1610 | message: message.to_string(), |
| 1611 | last_transition_time: String::new(), |
| 1612 | } |
| 1613 | } |
| 1614 | |
| 1615 | fn platform_event( |
| 1616 | source: &str, |
no outgoing calls
no test coverage detected