pub trait OuterBuilder<'a, T, Lx, Ly, Dx: Dim, Dy: Dim>{
// Required methods
fn scale(self, alpha: T) -> Self;
fn eval(self) -> Array<T, (Dx, Dy)>;
fn write<La: Layout>(self, a: &mut Slice<T, (Dx, Dy), La>);
fn add_to<La: Layout>(self, a: &mut Slice<T, (Dx, Dy), La>);
}Expand description
Builder interface for configuring outer product and rank-1 update
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".