ViewableExtends

Trait ViewableExtends 

Source
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 {}

Implementors§

Source§

impl<T> ViewableExtends<T> for T