vm-rs 0.2.4

Cross-platform VM lifecycle management — Apple Virtualization.framework (macOS) + Cloud Hypervisor (Linux)
Documentation
1
2
3
4
5
6
7
8
//! socket device module

use super::base::Id;

/// common configure of socket device
pub trait VZSocketDeviceConfiguration {
    fn id(&self) -> Id;
}