//! Constructors and methods on [`Box`] accepted by the arcis interpreter.
//!
//! [`Box`] here is a documentation-only redefinition of
//! [`std::boxed::Box`] — same shape, but with bodies that panic, since the
//! arcis interpreter intercepts the real method before they run.
const STUB_MSG: &str = "arcis::std::boxed is documentation-only; \
inside `#[encrypted]` code the interpreter intercepts the real method before this stub runs.";
/// Documentation of constructors and methods on [`Box<T>`](std::boxed::Box)
/// accepted by the arcis interpreter. Mirrors [`std::boxed::Box`]'s shape.