1
2
3
4
5
use types::Value;

pub trait SuperType<T: Value> {
    fn upcast_internal(T) -> Self;
}