pub struct MachineRegisteredEvent {
pub machine_id: &'static str,
pub registered: bool,
}Expand description
The given machine was registered or unregistered within this VirtualBox installation.
Fields§
§machine_id: &'static strID of the machine this event relates to.
registered: boolIf true, the machine was registered, otherwise it was unregistered.
Implementations§
Source§impl MachineRegisteredEvent
impl MachineRegisteredEvent
pub fn new(object: *mut IEvent) -> DetailEvent
Trait Implementations§
Source§impl Debug for MachineRegisteredEvent
impl Debug for MachineRegisteredEvent
Auto Trait Implementations§
impl Freeze for MachineRegisteredEvent
impl RefUnwindSafe for MachineRegisteredEvent
impl Send for MachineRegisteredEvent
impl Sync for MachineRegisteredEvent
impl Unpin for MachineRegisteredEvent
impl UnsafeUnpin for MachineRegisteredEvent
impl UnwindSafe for MachineRegisteredEvent
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