pub trait TakeScript<I> {
type Item;
// Required method
fn take(self, inner: I) -> Self::Item;
}Expand description
Take another script as the inner of the script.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".