//! This module contains consts for strategies. It may be handy to get a reference to strategy with
//! `'static` llifetime.
use::{Display, Debug};/// Display strategy.
pubstaticDISPLAY: Display = Display;/// Debug strategy.
pubstaticDEBUG: Debug = Debug;