//! The "All" workbench: shows every feature and every toolbar icon.
//!
//! Its `includes` predicate accepts every catalogue entry, and its `buttons`
//! slice is INTENTIONALLY EMPTY — "All"'s toolbar buttons are the DERIVED UNION
//! of every other workbench's buttons (see [`super::workbench_buttons`]), so this
//! file never hand-maintains a button list that would rot as workbenches are
//! added. Adding a new workbench file automatically grows "All".
use ;
/// "All" owns every feature — no filtering (classifies off nothing).
/// No hand-maintained buttons: "All" derives its buttons as the union of the
/// other workbenches (see [`super::workbench_buttons`]).
static BUTTONS: & = &;
/// No panel claims (v1).
static PANELS: & = &;
pub static ALL: Workbench = Workbench ;