Trait Run

Source
pub trait Run {
    type Output;

    // Required method
    fn run(self) -> Self::Output;
}
Expand description

A computation that can be run without additional compilation.

This trait is automatically implemented for types implementing RunCore.

Required Associated Types§

Required Methods§

Source

fn run(self) -> Self::Output

Implementors§

Source§

impl<T, Collected> Run for T
where T: Computation + RunCore, T::Output: Collect<T::Dim, Collected = Collected>,

Source§

type Output = Collected