Struct cpp_to_rust_generator::cpp_method::CppMethodDoc [] [src]

pub struct CppMethodDoc {
    pub anchor: String,
    pub html: String,
    pub mismatched_declaration: Option<String>,
    pub url: String,
    pub cross_references: Vec<String>,
}

C++ documentation for a method

Fields

HTML anchor of this documentation entry (used to detect duplicates)

HTML content

If the documentation parser couldn't find documentation for the exact same method, it can still provide documentation entry for the closest match. In this case, this field should contain C++ declaration of the found method.

Absolute URL to online documentation page for this method

Absolute documentation URLs encountered in the content

Trait Implementations

impl Debug for CppMethodDoc
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for CppMethodDoc
[src]

[src]

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

[src]

This method tests for !=.

impl Eq for CppMethodDoc
[src]

impl Clone for CppMethodDoc
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Hash for CppMethodDoc
[src]

[src]

Feeds this value into the given [Hasher]. Read more

1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

impl Send for CppMethodDoc

impl Sync for CppMethodDoc