spellcast 0.1.2

Casting of dynamic objects
Documentation
1
2
3
4
5
6
7
8
9
use super::*;

pub trait DyncastObj<From, To>: Is<From> + Is<To>
where
    From: ?Sized,
    To: ?Sized
{
    type Obj: IsObjOf<Self> + Is<From> + Is<To> + ?Sized;
}