pub struct Args {
pub raw: Vec<String>,
pub parsed: HashMap<String, Value>,
}
Expand description
Arguments to QEMU as passed to qemu_plugin_install
Fields§
§raw: Vec<String>
Arguments to the QEMU plugin as passed in by QEMU
parsed: HashMap<String, Value>
Arguments to the QEMU plugin, parsed into valid argument types and value types
Auto Trait Implementations§
impl Freeze for Args
impl RefUnwindSafe for Args
impl Send for Args
impl Sync for Args
impl Unpin for Args
impl UnwindSafe for Args
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