pub struct DuplicateFieldKey {
pub start_line: u32,
pub duplicate_keys: Vec<String>,
pub entry: Entry,
}Expand description
An entry that had a field key repeated within itself (last value
wins in the recovered entry, matching bibtexparser). Mirrors
DuplicateFieldKeyBlock.
Fields§
§start_line: u32§duplicate_keys: Vec<String>§entry: EntryTrait Implementations§
Source§impl Clone for DuplicateFieldKey
impl Clone for DuplicateFieldKey
Source§fn clone(&self) -> DuplicateFieldKey
fn clone(&self) -> DuplicateFieldKey
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for DuplicateFieldKey
impl RefUnwindSafe for DuplicateFieldKey
impl Send for DuplicateFieldKey
impl Sync for DuplicateFieldKey
impl Unpin for DuplicateFieldKey
impl UnsafeUnpin for DuplicateFieldKey
impl UnwindSafe for DuplicateFieldKey
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more