fespbvgg_docs_rs 0.17.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};
/// C.
#[derive(Clone, Copy, Debug)]
pub struct C;
impl Display for C {
    #[inline]
    fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
        f.write_str("C")
    }
}