tinymist_analysis::docs

Type Alias TypelessParamDocs

Source
pub type TypelessParamDocs = ParamDocsT<()>;
Expand description

Documentation about a parameter (without type information).

Aliased Type§

struct TypelessParamDocs {
    pub name: Interned<str>,
    pub docs: EcoString,
    pub cano_type: (),
    pub default: Option<EcoString>,
    pub attrs: ParamAttrs,
}

Fields§

§name: Interned<str>

The parameter’s name.

§docs: EcoString

Documentation for the parameter.

§cano_type: ()

Inferred type of the parameter.

§default: Option<EcoString>

The parameter’s default name as value.

§attrs: ParamAttrs

The attribute of the parameter.