fast_fmt 0.1.3

This crate provides faster, more flexible and more correct alternative to core::fmt
Documentation
1
2
3
4
5
6
7
8
9
10
//! This module contains consts for strategies. It may be handy to get a reference to strategy with
//! `'static` llifetime.

use ::{Display, Debug};

/// Display strategy.
pub static DISPLAY: Display = Display;

/// Debug strategy.
pub static DEBUG: Debug = Debug;