Struct clang::documentation::InlineCommand[][src]

pub struct InlineCommand {
    pub command: String,
    pub arguments: Vec<String>,
    pub style: Option<InlineCommandStyle>,
}

An inline command with word-like arguments.

Fields

The command.

The command arguments.

The style with which to render the command arguments, if any.

Trait Implementations

impl Clone for InlineCommand
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for InlineCommand
[src]

Formats the value using the given formatter. Read more

impl PartialEq for InlineCommand
[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 InlineCommand
[src]

Auto Trait Implementations