restd 0.3.0

A re-implementation of various std features
Documentation
1
2
3
4
5
6
7
8
9
10
/// A repr for formatting data in a user-friendly style.
///
/// Unlike [`Debug`](super::Debug) and [`Pretty`](super::Pretty), cannot be
/// derived, since what is "user-friendly" output varies from type to type.
///
/// Equivalent of [`core::fmt::Display`].
#[derive(Default, Clone, Copy)]
pub struct Display;
impl super::Style for Display {}
super::derive!(struct Display);