1//! socket device module 2 3use crate::base::Id; 4 5/// common configure of socket device 6pub trait VZSocketDeviceConfiguration { 7 fn id(&self) -> Id; 8}