mirror-mirror 0.1.0

Reflection library for Rust
Documentation
use alloc::borrow::Cow;
use alloc::boxed::Box;
use core::any::Any;
use core::fmt;

use crate::reflect_debug;
use crate::type_info::graph::NodeId;
use crate::type_info::graph::TypeGraph;
use crate::DescribeType;
use crate::FromReflect;
use crate::Reflect;
use crate::ReflectMut;
use crate::ReflectOwned;
use crate::ReflectRef;
use crate::TypeDescriptor;
use crate::Value;

impl<T> Reflect for Box<T>
where
    T: Reflect + DescribeType,
{
    fn type_descriptor(&self) -> Cow<'static, TypeDescriptor> {
        impl<T> DescribeType for Box<T>
        where
            T: DescribeType,
        {
            fn build(graph: &mut TypeGraph) -> NodeId {
                T::build(graph)
            }
        }

        <T as DescribeType>::type_descriptor()
    }

    fn as_any(&self) -> &dyn Any {
        <T as Reflect>::as_any(self)
    }

    fn as_any_mut(&mut self) -> &mut dyn Any {
        <T as Reflect>::as_any_mut(self)
    }

    fn as_reflect(&self) -> &dyn Reflect {
        <T as Reflect>::as_reflect(self)
    }

    fn as_reflect_mut(&mut self) -> &mut dyn Reflect {
        <T as Reflect>::as_reflect_mut(self)
    }

    fn reflect_owned(self: Box<Self>) -> ReflectOwned {
        <T as Reflect>::reflect_owned(*self)
    }

    fn reflect_ref(&self) -> ReflectRef<'_> {
        <T as Reflect>::reflect_ref(self)
    }

    fn reflect_mut(&mut self) -> ReflectMut<'_> {
        <T as Reflect>::reflect_mut(self)
    }

    fn patch(&mut self, value: &dyn Reflect) {
        <T as Reflect>::patch(self, value)
    }

    fn to_value(&self) -> Value {
        <T as Reflect>::to_value(self)
    }

    fn clone_reflect(&self) -> Box<dyn Reflect> {
        <T as Reflect>::clone_reflect(self)
    }

    fn debug(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        reflect_debug(self, f)
    }
}

impl<T> FromReflect for Box<T>
where
    T: FromReflect + DescribeType,
{
    fn from_reflect(reflect: &dyn Reflect) -> Option<Self> {
        Some(Box::new(T::from_reflect(reflect)?))
    }
}

impl<T> From<Box<T>> for Value
where
    T: Into<Value>,
{
    fn from(boxed: Box<T>) -> Self {
        (*boxed).into()
    }
}