| 9 | mod desktop; |
| 10 | |
| 11 | pub trait Platform { |
| 12 | fn init(rust_native: RustUI) -> Self; |
| 13 | fn run<F>(self, app: F) where F: FnOnce() -> Box<dyn Application>; |
| 14 | } |
| 15 | |
| 16 | #[cfg(target_os = "ios")] |
| 17 | pub use ios::IosPlatform as CurrentPlatform; |
nothing calls this directly
no outgoing calls
no test coverage detected