pub trait TsInputAlg {
// Required method
fn describe(shapes: &TsShape) -> TsArgument;
}Expand description
States how a call takes one argument.
Required Methods§
Sourcefn describe(shapes: &TsShape) -> TsArgument
fn describe(shapes: &TsShape) -> TsArgument
Reads the type this argument carries, and where it goes.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".