Enum clang::documentation::CommentChild [] [src]

pub enum CommentChild {
    BlockCommand(BlockCommand),
    HtmlStartTag(HtmlStartTag),
    HtmlEndTag(String),
    InlineCommand(InlineCommand),
    Paragraph(Vec<CommentChild>),
    ParamCommand(ParamCommand),
    TParamCommand(TParamCommand),
    Text(String),
    VerbatimCommand(Vec<String>),
    VerbatimLineCommand(String),
}

A child component of a comment.

Variants

A block command with zero or more arguments and a paragraph as an argument.

An HTML start tag.

An HTML end tag.

An inline command with word-like arguments.

A paragraph containing inline content.

A \param command.

A \tparam command.

Plain text.

A verbatim command with a closing command.

A verbatim command with a single line and no closing command.

Trait Implementations

impl Clone for CommentChild
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for CommentChild
[src]

Formats the value using the given formatter.

impl PartialEq for CommentChild
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for CommentChild
[src]