facet-core 0.44.4

Core reflection traits and types for the facet ecosystem - provides the Facet trait, Shape metadata, and type-erased pointers
Documentation
//! Facet implementation for Type and related types

use crate::{Def, Facet, Shape, ShapeBuilder, Type, UserType, VTableDirect, vtable_direct};

// Type - treat as opaque for now (complex nested enum with recursive references to Shape)
unsafe impl Facet<'_> for Type {
    const SHAPE: &'static Shape = &const {
        const VTABLE: VTableDirect = vtable_direct!(Type => Debug,);

        ShapeBuilder::for_sized::<Type>("Type")
            .ty(Type::User(UserType::Opaque))
            .def(Def::Scalar)
            .vtable_direct(&VTABLE)
            .copy()
            .send()
            .sync()
            .build()
    };
}

// PrimitiveType - treat as opaque
unsafe impl Facet<'_> for crate::PrimitiveType {
    const SHAPE: &'static Shape = &const {
        const VTABLE: VTableDirect = vtable_direct!(crate::PrimitiveType => Debug,);

        ShapeBuilder::for_sized::<crate::PrimitiveType>("PrimitiveType")
            .ty(Type::User(UserType::Opaque))
            .def(Def::Scalar)
            .vtable_direct(&VTABLE)
            .copy()
            .send()
            .sync()
            .build()
    };
}

// NumericType - treat as opaque
unsafe impl Facet<'_> for crate::NumericType {
    const SHAPE: &'static Shape = &const {
        const VTABLE: VTableDirect = vtable_direct!(crate::NumericType => Debug,);

        ShapeBuilder::for_sized::<crate::NumericType>("NumericType")
            .ty(Type::User(UserType::Opaque))
            .def(Def::Scalar)
            .vtable_direct(&VTABLE)
            .copy()
            .send()
            .sync()
            .build()
    };
}

// TextualType - treat as opaque
unsafe impl Facet<'_> for crate::TextualType {
    const SHAPE: &'static Shape = &const {
        const VTABLE: VTableDirect = vtable_direct!(crate::TextualType => Debug,);

        ShapeBuilder::for_sized::<crate::TextualType>("TextualType")
            .ty(Type::User(UserType::Opaque))
            .def(Def::Scalar)
            .vtable_direct(&VTABLE)
            .copy()
            .send()
            .sync()
            .build()
    };
}

// SequenceType - treat as opaque
unsafe impl Facet<'_> for crate::SequenceType {
    const SHAPE: &'static Shape = &const {
        const VTABLE: VTableDirect = vtable_direct!(crate::SequenceType => Debug,);

        ShapeBuilder::for_sized::<crate::SequenceType>("SequenceType")
            .ty(Type::User(UserType::Opaque))
            .def(Def::Scalar)
            .vtable_direct(&VTABLE)
            .copy()
            .send()
            .sync()
            .build()
    };
}

// ArrayType - treat as opaque
unsafe impl Facet<'_> for crate::ArrayType {
    const SHAPE: &'static Shape = &const {
        const VTABLE: VTableDirect = vtable_direct!(crate::ArrayType => Debug,);

        ShapeBuilder::for_sized::<crate::ArrayType>("ArrayType")
            .ty(Type::User(UserType::Opaque))
            .def(Def::Scalar)
            .vtable_direct(&VTABLE)
            .copy()
            .send()
            .sync()
            .build()
    };
}

// SliceType - treat as opaque
unsafe impl Facet<'_> for crate::SliceType {
    const SHAPE: &'static Shape = &const {
        const VTABLE: VTableDirect = vtable_direct!(crate::SliceType => Debug,);

        ShapeBuilder::for_sized::<crate::SliceType>("SliceType")
            .ty(Type::User(UserType::Opaque))
            .def(Def::Scalar)
            .vtable_direct(&VTABLE)
            .copy()
            .send()
            .sync()
            .build()
    };
}

// UserType - treat as opaque
unsafe impl Facet<'_> for crate::UserType {
    const SHAPE: &'static Shape = &const {
        const VTABLE: VTableDirect = vtable_direct!(crate::UserType => Debug,);

        ShapeBuilder::for_sized::<crate::UserType>("UserType")
            .ty(Type::User(UserType::Opaque))
            .def(Def::Scalar)
            .vtable_direct(&VTABLE)
            .copy()
            .send()
            .sync()
            .build()
    };
}

// StructType - treat as opaque
unsafe impl Facet<'_> for crate::StructType {
    const SHAPE: &'static Shape = &const {
        const VTABLE: VTableDirect = vtable_direct!(crate::StructType => Debug,);

        ShapeBuilder::for_sized::<crate::StructType>("StructType")
            .ty(Type::User(UserType::Opaque))
            .def(Def::Scalar)
            .vtable_direct(&VTABLE)
            .copy()
            .send()
            .sync()
            .build()
    };
}

// EnumType - treat as opaque
unsafe impl Facet<'_> for crate::EnumType {
    const SHAPE: &'static Shape = &const {
        const VTABLE: VTableDirect = vtable_direct!(crate::EnumType => Debug,);

        ShapeBuilder::for_sized::<crate::EnumType>("EnumType")
            .ty(Type::User(UserType::Opaque))
            .def(Def::Scalar)
            .vtable_direct(&VTABLE)
            .copy()
            .send()
            .sync()
            .build()
    };
}

// UnionType - treat as opaque
unsafe impl Facet<'_> for crate::UnionType {
    const SHAPE: &'static Shape = &const {
        const VTABLE: VTableDirect = vtable_direct!(crate::UnionType => Debug,);

        ShapeBuilder::for_sized::<crate::UnionType>("UnionType")
            .ty(Type::User(UserType::Opaque))
            .def(Def::Scalar)
            .vtable_direct(&VTABLE)
            .copy()
            .send()
            .sync()
            .build()
    };
}

// PointerType - treat as opaque
unsafe impl Facet<'_> for crate::PointerType {
    const SHAPE: &'static Shape = &const {
        const VTABLE: VTableDirect = vtable_direct!(crate::PointerType => Debug,);

        ShapeBuilder::for_sized::<crate::PointerType>("PointerType")
            .ty(Type::User(UserType::Opaque))
            .def(Def::Scalar)
            .vtable_direct(&VTABLE)
            .copy()
            .send()
            .sync()
            .build()
    };
}

// ValuePointerType - treat as opaque
unsafe impl Facet<'_> for crate::ValuePointerType {
    const SHAPE: &'static Shape = &const {
        const VTABLE: VTableDirect = vtable_direct!(crate::ValuePointerType => Debug,);

        ShapeBuilder::for_sized::<crate::ValuePointerType>("ValuePointerType")
            .ty(Type::User(UserType::Opaque))
            .def(Def::Scalar)
            .vtable_direct(&VTABLE)
            .copy()
            .send()
            .sync()
            .build()
    };
}

// FunctionPointerDef - treat as opaque
unsafe impl Facet<'_> for crate::FunctionPointerDef {
    const SHAPE: &'static Shape = &const {
        const VTABLE: VTableDirect = vtable_direct!(crate::FunctionPointerDef => Debug,);

        ShapeBuilder::for_sized::<crate::FunctionPointerDef>("FunctionPointerDef")
            .ty(Type::User(UserType::Opaque))
            .def(Def::Scalar)
            .vtable_direct(&VTABLE)
            .copy()
            .send()
            .sync()
            .build()
    };
}

// Repr - treat as opaque
unsafe impl Facet<'_> for crate::Repr {
    const SHAPE: &'static Shape = &const {
        const VTABLE: VTableDirect = vtable_direct!(crate::Repr => Debug, Hash, PartialEq,);

        ShapeBuilder::for_sized::<crate::Repr>("Repr")
            .ty(Type::User(UserType::Opaque))
            .def(Def::Scalar)
            .vtable_direct(&VTABLE)
            .copy()
            .send()
            .sync()
            .eq()
            .build()
    };
}

// BaseRepr - treat as opaque
unsafe impl Facet<'_> for crate::BaseRepr {
    const SHAPE: &'static Shape = &const {
        const VTABLE: VTableDirect = vtable_direct!(crate::BaseRepr => Debug, Hash, PartialEq,);

        ShapeBuilder::for_sized::<crate::BaseRepr>("BaseRepr")
            .ty(Type::User(UserType::Opaque))
            .def(Def::Scalar)
            .vtable_direct(&VTABLE)
            .copy()
            .send()
            .sync()
            .eq()
            .build()
    };
}