use super::VMGcRef;
pub enum VMExternRef {}
pub enum VMStructRef {}
pub enum VMArrayRef {}
pub enum VMExnRef {}
pub struct VMGcObjectData {
_inner: VMStructRef,
_phantom: core::marker::PhantomData<[u8]>,
}
impl VMGcRef {
pub fn into_structref_unchecked(self) -> VMStructRef {
unreachable!()
}
pub fn into_exnref_unchecked(self) -> VMExnRef {
unreachable!()
}
}
impl From<VMStructRef> for VMGcRef {
fn from(s: VMStructRef) -> VMGcRef {
match s {}
}
}
impl From<VMExnRef> for VMGcRef {
fn from(e: VMExnRef) -> VMGcRef {
match e {}
}
}
impl<'a> From<&'a [u8]> for &'a VMGcObjectData {
fn from(_: &'a [u8]) -> Self {
unreachable!()
}
}
impl<'a> From<&'a mut [u8]> for &'a mut VMGcObjectData {
fn from(_: &'a mut [u8]) -> Self {
unreachable!()
}
}