6 releases (breaking)

0.9.1 Nov 4, 2024
0.9.0 Oct 29, 2024
0.8.0 Oct 21, 2024
0.7.1 Oct 16, 2024
0.1.0 Aug 23, 2024

#2250 in Procedural macros

Download history 8965/week @ 2024-10-19 8139/week @ 2024-10-26 5137/week @ 2024-11-02 6338/week @ 2024-11-09 6909/week @ 2024-11-16 6707/week @ 2024-11-23 8403/week @ 2024-11-30 8591/week @ 2024-12-07 8006/week @ 2024-12-14 3415/week @ 2024-12-21 2730/week @ 2024-12-28 4066/week @ 2025-01-04 3779/week @ 2025-01-11 3530/week @ 2025-01-18 3697/week @ 2025-01-25 3029/week @ 2025-02-01

14,604 downloads per month
Used in 6 crates (via documented)

MIT license

49KB
817 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

~0.6–1.2MB
~23K SLoC