pub trait ModelingCmdVariant<'de> {
type Output: ModelingCmdOutput<'de>;
// Required method
fn into_enum(self) -> ModelingCmd;
}Expand description
Some modeling command executed on the KittyCAD engine.
Required Associated Types§
sourcetype Output: ModelingCmdOutput<'de>
type Output: ModelingCmdOutput<'de>
What the command responds with
Required Methods§
sourcefn into_enum(self) -> ModelingCmd
fn into_enum(self) -> ModelingCmd
Take this specific enum variant, and create the general enum.