pub trait OutMethod {
    fn out(&mut self) -> Out<'_, Self> { ... }
    fn linear_out(&mut self) -> LinearOut<'_, Self> { ... }
}
Expand description

Used to create an Out reference, for all types

Provided Methods

creates an Out ref

creates an LinearOut ref

Implementors