/// Defines the Backend trait for custom backend implementations in FlowCode.
#[cfg(feature ="duckdb")]pubtraitBackend{/// Executes a parsed command and returns the result as a string.
fnexecute(&self, command:&crate::parser::ParsedCommand)->Result<String, Box<dyn std::error::Error>>;}