Trait wasmer_types::lib::std::ops::DispatchFromDyn [−][src]
pub trait DispatchFromDyn<T> { }
🔬 This is a nightly-only experimental API. (
dispatch_from_dyn
)Expand description
This is used for object safety, to check that a method’s receiver type can be dispatched on.
An example implementation of the trait:
impl<T: ?Sized, U: ?Sized> DispatchFromDyn<Rc<U>> for Rc<T> where T: Unsize<U>, {}
Implementations on Foreign Types
impl<'a, T, U> DispatchFromDyn<&'a mut U> for &'a mut T where
T: Unsize<U> + ?Sized,
U: ?Sized,
[src]