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: EcoStringDocumentation for the parameter.
cano_type: ()Inferred type of the parameter.
default: Option<EcoString>The parameter’s default name as value.
attrs: ParamAttrsThe attribute of the parameter.