1 2 3 4 5 6
pub use std::fmt::Debug; pub trait Builtin: Debug + Send + Sync + 'static { fn config(&self) -> &'static str; fn name(&self) -> &'static str; }