//! User functions
use crateValue;
use async_trait;
pub use FunctionContext;
use result;
pub use UserFunctions;
/// User functions should implement this trait
/// Convenience type for passing around boxed user-function implementations
pub type BoxedFunction = ;
/// Result type returned from UserFunction
pub type FunctionResult = Result;