1use crate::guid::GUID; 2 3pub trait Interface: 'static { 4 const GUID: GUID; 5} 6 7impl Interface for () { 8 const GUID: GUID = 0x00000000_0000_0000_C000_000000000046; 9}