pub enum LinuxManagerEvent {
OnGuestInfoChanged {
label: String,
info: LinuxGuestInfo,
},
}
Variants§
OnGuestInfoChanged
Implementations§
Source§impl LinuxManagerEvent
impl LinuxManagerEvent
pub fn into_on_guest_info_changed(self) -> Option<(String, LinuxGuestInfo)>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LinuxManagerEvent
impl RefUnwindSafe for LinuxManagerEvent
impl Send for LinuxManagerEvent
impl Sync for LinuxManagerEvent
impl Unpin for LinuxManagerEvent
impl UnwindSafe for LinuxManagerEvent
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