pub struct Info {
pub target_name: String,
pub version: Version,
pub system: Option<System>,
}
Expand description
Information about the simulation
Fields§
§target_name: String
The target name of the simulation (e.g. x86_64-softmmu
)
version: Version
The minimum and current plugin API version
system: Option<System>
Information about the system, if the emulator is running in full system
emulation mode. If None
, the emulator is running in user mode
Auto Trait Implementations§
impl Freeze for Info
impl RefUnwindSafe for Info
impl Send for Info
impl Sync for Info
impl Unpin for Info
impl UnwindSafe for Info
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