1 2 3 4 5 6 7 8 9 10 11
use super::*; #[cfg(target_arch = "wasm32")] #[path = "web.rs"] mod _impl; #[cfg(not(target_arch = "wasm32"))] #[path = "native.rs"] mod _impl; pub use _impl::*;
1 2 3 4 5 6 7 8 9 10 11
use super::*; #[cfg(target_arch = "wasm32")] #[path = "web.rs"] mod _impl; #[cfg(not(target_arch = "wasm32"))] #[path = "native.rs"] mod _impl; pub use _impl::*;