Trait IntoIndirectCall
pub trait IntoIndirectCall: Sized {
type Item;
// Required method
fn into_indirect(self) -> Self::Item;
}
Available on crate features
__ecma
and __utils
only.Required Associated Types§
type Item
Required Methods§
fn into_indirect(self) -> Self::Item
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.