Skip to main content

CompositeCommandImplementation

Trait CompositeCommandImplementation 

Source
pub trait CompositeCommandImplementation {
    // Required method
    fn router(
        _first_input_body: &String,
        _command_instance_name: &String,
        _parts: &Vec<PreCommandSpecification>,
    ) -> Result<Vec<String>, Diagnostic>;
}

Required Methods§

Source

fn router( _first_input_body: &String, _command_instance_name: &String, _parts: &Vec<PreCommandSpecification>, ) -> Result<Vec<String>, Diagnostic>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§