pub trait ViewableExtends<T> { }Expand description
Declare that one type extends the other
struct C_BaseClass;
struct C_SubClass;
impl ViewableExtends<C_BaseClass> for C_SubClass {}pub trait ViewableExtends<T> { }Declare that one type extends the other
struct C_BaseClass;
struct C_SubClass;
impl ViewableExtends<C_BaseClass> for C_SubClass {}