Skip to main content

lingxia_platform/
traits.rs

1pub mod app_runtime;
2pub mod device;
3pub mod file;
4pub mod location;
5pub mod media_interaction;
6pub mod media_runtime;
7pub mod mouse;
8pub mod network;
9pub mod pull_to_refresh;
10pub mod screenshot;
11pub mod secure_store;
12pub mod share;
13pub mod stream_decoder;
14pub mod ui;
15pub mod update;
16pub mod video_player;
17pub mod wifi;
18
19pub mod prelude {
20    pub use super::app_runtime::AppRuntime;
21    pub use super::device::{Device, DeviceHardware};
22    pub use super::file::FileService;
23    pub use super::location::Location;
24    pub use super::media_interaction::MediaInteraction;
25    pub use super::media_runtime::MediaRuntime;
26    pub use super::mouse::{AppMouse, AppMouseAction, AppMouseButton, AppMouseRequest};
27    pub use super::network::Network;
28    pub use super::pull_to_refresh::PullToRefresh;
29    pub use super::screenshot::AppScreenshot;
30    pub use super::secure_store::SecureStore;
31    pub use super::share::ShareService;
32    pub use super::ui::{SurfacePresenter, UIUpdate, UserFeedback};
33    pub use super::update::UpdateService;
34    pub use super::video_player::{VideoPlayerHandle, VideoPlayerManager};
35    pub use super::wifi::Wifi;
36}