pub struct DuplicateBlockKey {
pub key: String,
pub start_line: u32,
pub entry: Entry,
}Expand description
A duplicate-citation-key block: a second (or later) @entry{key,...}
using a key already claimed by an earlier entry in the same file.
Mirrors bibtexparser’s DuplicateBlockKeyBlock.
Fields§
§key: String§start_line: u32§entry: EntryThe duplicate’s own (recovered) entry — used by BIBTEX-002 to report a location.
Trait Implementations§
Source§impl Clone for DuplicateBlockKey
impl Clone for DuplicateBlockKey
Source§fn clone(&self) -> DuplicateBlockKey
fn clone(&self) -> DuplicateBlockKey
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 DuplicateBlockKey
impl RefUnwindSafe for DuplicateBlockKey
impl Send for DuplicateBlockKey
impl Sync for DuplicateBlockKey
impl Unpin for DuplicateBlockKey
impl UnsafeUnpin for DuplicateBlockKey
impl UnwindSafe for DuplicateBlockKey
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