flowcode-core 0.4.3-alpha

Core execution engine for FlowCode data scripting language
Documentation
1
2
3
4
5
6
/// Defines the Backend trait for custom backend implementations in FlowCode.
#[cfg(feature = "duckdb")]
pub trait Backend {
    /// Executes a parsed command and returns the result as a string.
    fn execute(&self, command: &crate::parser::ParsedCommand) -> Result<String, Box<dyn std::error::Error>>;
}