[][src]Struct biblatex::RawEntry

pub struct RawEntry<'s> {
    pub key: &'s str,
    pub entry_type: &'s str,
    pub fields: HashMap<&'s str, &'s str>,
}

A raw extracted entry, with abbreviations not yet resolved.

Fields

key: &'s str

The citation key.

entry_type: &'s str

Denotes the type of bibliographic item (e.g. article).

fields: HashMap<&'s str, &'s str>

Maps from field names to their values.

Trait Implementations

impl<'s> Clone for RawEntry<'s>[src]

impl<'s> Debug for RawEntry<'s>[src]

Auto Trait Implementations

impl<'s> RefUnwindSafe for RawEntry<'s>[src]

impl<'s> Send for RawEntry<'s>[src]

impl<'s> Sync for RawEntry<'s>[src]

impl<'s> Unpin for RawEntry<'s>[src]

impl<'s> UnwindSafe for RawEntry<'s>[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.