pub trait TsOutputAlg<From> {
// Required method
fn answer(shapes: &TsShape) -> TsType;
}Expand description
States what one output kind answers a caller with.
A failure is a rejected call rather than a value, so what a call answers with is what it answers with when it answers at all.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".