blob: 2dc9539ba527b2875d13060d0588dfeec7cf9ab5 [file] [log] [blame]
pub struct VTable{
state:extern "C" fn(),
}
impl VTable{
pub const fn vtable()->&'static VTable{
Self::VTABLE
}
const VTABLE: &'static VTable =
&VTable{state};
}
extern "C" fn state() {}