9 releases (4 breaking)

0.5.0 Jun 1, 2024
0.4.3 May 27, 2024
0.4.1 Apr 7, 2024
0.3.0 Jan 25, 2024
0.1.2 Jun 7, 2023

#8 in #documented

Download history 1074/week @ 2024-11-13 836/week @ 2024-11-20 212/week @ 2024-11-27 147/week @ 2024-12-04 189/week @ 2024-12-11 44/week @ 2024-12-18 1/week @ 2024-12-25 50/week @ 2025-01-01 88/week @ 2025-01-08 96/week @ 2025-01-15 139/week @ 2025-01-22 520/week @ 2025-01-29 270/week @ 2025-02-05 132/week @ 2025-02-12 57/week @ 2025-02-19 151/week @ 2025-02-26

732 downloads per month

MIT license

21KB
348 lines

documented

Derive and attribute macros for accessing your type's documentation at runtime

Quick start

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

/// Trying is the first step to failure.
#[derive(Documented, DocumentedFields, DocumentedVariants)]
enum AlwaysPlay {
    /// And Kb8.
    #[allow(dead_code)]
    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,
    ["And Kb8.", "But only if you are white."]
);
assert_eq!(AlwaysPlay::get_field_docs("Kb1"), Ok("And Kb8."));

// DocumentedVariants
assert_eq!(
    AlwaysPlay::F6.get_variant_docs(),
    "But only if you are white."
);

Dependencies

~180–600KB
~14K SLoC