pub struct Simulator {
pub id: Uuid,
pub name: String,
pub runtime: Runtime,
pub device_type: DeviceType,
pub state: SimulatorState,
pub is_available: bool,
pub data_path: Option<PathBuf>,
pub log_path: Option<PathBuf>,
}Fields§
§id: Uuid§name: String§runtime: Runtime§device_type: DeviceType§state: SimulatorState§is_available: bool§data_path: Option<PathBuf>§log_path: Option<PathBuf>Trait Implementations§
impl Eq for Simulator
impl StructuralPartialEq for Simulator
Auto Trait Implementations§
impl Freeze for Simulator
impl RefUnwindSafe for Simulator
impl Send for Simulator
impl Sync for Simulator
impl Unpin for Simulator
impl UnsafeUnpin for Simulator
impl UnwindSafe for Simulator
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more