1 2 3 4 5 6 7
use crate::{types::ValkyrieMetaType, ValkyrieValue}; use std::sync::Arc; pub trait ValkyrieFunction { fn boxed(self) -> ValkyrieValue; fn type_info(&self) -> Arc<ValkyrieMetaType>; }