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.

Implementors§