Struct doxygen_rs::ast::Param
source · pub struct Param {
pub arg_name: String,
pub direction: Option<Direction>,
pub description: Option<NestedString>,
}
Expand description
Represents a single parameter.
Fields§
§arg_name: String
The argument name of the item being documented.
direction: Option<Direction>
The direction of the argument. Check Doxygen docs for more info
description: Option<NestedString>
The description of the argument.