use crate::symfony::console::output::output_interface::OutputInterface; use indexmap::IndexMap; use shirabe_php_shim::PhpMixed; /// Descriptor interface. pub trait DescriptorInterface { fn describe( &mut self, output: std::rc::Rc>, object: PhpMixed, options: IndexMap, ) -> anyhow::Result<()>; }