Skip to main content

holodeck_simctl_core/models/
mod.rs

1mod appearance;
2mod available_targets;
3mod device_type;
4mod installed_app;
5mod language_option;
6mod media_types;
7mod platform;
8mod privacy;
9mod runtime;
10mod semantic_version;
11mod simctl_identifiers;
12mod simulator;
13mod simulator_state;
14mod theme_name;
15
16pub use appearance::{Appearance, BatteryState, StatusBarOverrides};
17pub use available_targets::AvailableTargets;
18pub use device_type::DeviceType;
19pub use installed_app::InstalledApp;
20pub use language_option::LanguageOption;
21pub use media_types::{ScreenshotType, VideoCodec};
22pub use platform::Platform;
23pub use privacy::{PrivacyAction, PrivacyPermission};
24pub use runtime::Runtime;
25pub use semantic_version::SemanticVersion;
26pub use simulator::Simulator;
27pub use simulator_state::SimulatorState;
28pub use theme_name::ThemeName;