fespbvgg_docs_rs 0.16.0

Dummy crate to test publishing to docs.rs.
Documentation
1
2
3
4
5
6
7
8
9
10
use core::fmt::{self, Display, Formatter};
/// B.
#[derive(Clone, Copy, Debug)]
pub struct B;
impl Display for B {
    #[inline]
    fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
        f.write_str("B")
    }
}