7 unstable releases (3 breaking)

0.4.1 Apr 7, 2024
0.4.0 Apr 1, 2024
0.3.0 Jan 25, 2024
0.2.0 Nov 21, 2023
0.1.2 Jun 7, 2023

#11 in #documented

Download history 60/week @ 2024-01-15 81/week @ 2024-01-22 65/week @ 2024-01-29 106/week @ 2024-02-05 58/week @ 2024-02-12 156/week @ 2024-02-19 237/week @ 2024-02-26 179/week @ 2024-03-04 263/week @ 2024-03-11 260/week @ 2024-03-18 69/week @ 2024-03-25 498/week @ 2024-04-01 323/week @ 2024-04-08 135/week @ 2024-04-15 218/week @ 2024-04-22 221/week @ 2024-04-29

992 downloads per month
Used in 5 crates (via documented)

MIT license

8KB
168 lines

documented

Traits and derive macros for accessing your type's documentation at runtime

Quick start

use documented::{Documented, DocumentedFields, DocumentedVariants, Error};

/// Trying is the first step to failure.
#[derive(Documented, DocumentedFields, DocumentedVariants)]
enum AlwaysPlay {
    Kb1,
    /// But only if you are white.
    F6,
}

// Documented
assert_eq!(AlwaysPlay::DOCS, "Trying is the first step to failure.");

// DocumentedFields
assert_eq!(
    AlwaysPlay::FIELD_DOCS,
    [None, Some("But only if you are white.")]
);
assert_eq!(
    AlwaysPlay::get_field_docs("Kb1"),
    Err(Error::NoDocComments("Kb1".to_string()))
);
assert_eq!(
    AlwaysPlay::get_field_docs("F6"),
    Ok("But only if you are white.")
);
assert_eq!(
    AlwaysPlay::get_field_docs("Bf1"),
    Err(Error::NoSuchField("Bf1".to_string()))
);

// DocumentedVariants
assert_eq!(
    AlwaysPlay::Kb1.get_variant_docs(),
    Err(Error::NoDocComments("Kb1".to_string()))
);
assert_eq!(
    AlwaysPlay::F6.get_variant_docs(),
    Ok("But only if you are white.")
);

Dependencies

~325–780KB
~19K SLoC