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; }