pub trait MetaArg<M> {
// Required method
fn into_meta(self) -> M;
}Expand description
Helper trait that lets ToolCollection::register accept either a real
M or () when M = NoMeta. Passing () to a typed collection fails
at compile time — there’s no silent default.