Struct nom_bibtex::BibliographyEntry [] [src]

pub struct BibliographyEntry<'a> {
    pub entry_type: &'a str,
    pub citation_key: &'a str,
    // some fields omitted
}

An entry of a bibtex bibliography.

Fields

The type of the bibtex entry.

Example: misc, article, manual, ...

The citation key used to reference the bibliography in the LaTeX file.

Methods

impl<'a> BibliographyEntry<'a>
[src]

Get the tags of a bibliography entry.

Tags are the characteristics of the bibliography such as author, title, year, ...

Trait Implementations

impl<'a> Debug for BibliographyEntry<'a>
[src]

Formats the value using the given formatter.

impl<'a> PartialEq for BibliographyEntry<'a>
[src]

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

This method tests for !=.

impl<'a> Eq for BibliographyEntry<'a>
[src]