Trait Dynamic

Source
pub unsafe trait Dynamic<T>
where T: VcValueTrait + ?Sized,
{ }
Expand description

Marker trait that indicates that a Vc<Self> can accept all methods declared on a Vc<T>.

§Safety

The implementor of this trait must ensure that Self implements the trait T.

Implementations on Foreign Types§

Source§

impl Dynamic<Box<dyn ValueDebug>> for Box<dyn ValueDebug>

Source§

impl Dynamic<Box<dyn ValueDebug>> for Box<dyn ValueDefault>

Source§

impl Dynamic<Box<dyn ValueDebug>> for Box<dyn ValueToString>

Source§

impl Dynamic<Box<dyn ValueDebug>> for Box<dyn Effect>

Source§

impl Dynamic<Box<dyn ValueDefault>> for Box<dyn ValueDefault>

Source§

impl Dynamic<Box<dyn ValueToString>> for Box<dyn ValueToString>

Source§

impl Dynamic<Box<dyn Effect>> for Box<dyn Effect>

Implementors§