use crate::symfony::console::completion::completion_suggestions::CompletionSuggestions; use crate::symfony::console::output::output_interface::OutputInterface; /// Transforms the `CompletionSuggestions` object into output readable by the shell completion. pub trait CompletionOutputInterface: std::fmt::Debug { fn write(&self, suggestions: &CompletionSuggestions, output: &dyn OutputInterface); }