macro_rules! boxed { ($val:expr) => { ... }; }
Creates a new Box instance.
Box
This macro takes an expression and wraps it in a Box. It offers a more concise syntax compared to the standard Box::new function.
Box::new