virtualization-rs 0.1.2

virtualization-rs provides the API of the Apple Virtualization.framework in Rust language.
Documentation
1
2
3
4
5
6
7
8
//! socket device module

use crate::base::Id;

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