Skip to main content

lingxia_platform/
traits.rs

1pub mod app_runtime;
2pub mod device;
3pub mod document;
4pub mod location;
5pub mod media_interaction;
6pub mod media_runtime;
7pub mod pull_to_refresh;
8pub mod stream_decoder;
9pub mod ui;
10pub mod update;
11pub mod video_player;
12pub mod wifi;
13
14pub mod prelude {
15    pub use super::app_runtime::AppRuntime;
16    pub use super::device::{Device, DeviceHardware, DeviceSecureStore};
17    pub use super::document::DocumentInteraction;
18    pub use super::location::Location;
19    pub use super::media_interaction::MediaInteraction;
20    pub use super::media_runtime::MediaRuntime;
21    pub use super::pull_to_refresh::PullToRefresh;
22    pub use super::ui::{PopupPresenter, UIUpdate, UserFeedback};
23    pub use super::update::UpdateService;
24    pub use super::video_player::{VideoPlayerHandle, VideoPlayerManager};
25    pub use super::wifi::Wifi;
26}