pub trait Documented {
    const DOCS: &'static str;
}
Expand description

Adds an associated constant DOCS on your type containing its documentation, allowing you to access its documentation at runtime.

Required Associated Constants§

source

const DOCS: &'static str

The static doc comments on this type.

Implementors§