tinymist_query::docs

Type Alias UntypedVarDocs

Source
pub type UntypedVarDocs = VarDocsT<()>;
Expand description

Documentation about a variable (without type information).

Aliased Type§

struct UntypedVarDocs {
    pub docs: EcoString,
    pub return_ty: (),
    pub def_docs: OnceLock<String>,
}

Fields§

§docs: EcoString

Documentation for the pattern binding.

§return_ty: ()

The inferred type of the pattern binding source.

§def_docs: OnceLock<String>

Cached documentation for the definition.