Skip to main content

TakeScript

Trait TakeScript 

Source
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§

Source

fn take(self, inner: I) -> Self::Item

Take the inner script.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§