pub enum Token {
Identifier,
OpeningBrace,
ClosingBrace,
Comma,
QuotationMark,
Equals,
DecimalPoint,
}
Expand description
A token that can be encountered during parsing.
Variants§
Identifier
An identifier for a field key, citation type, abbreviation, or citation key.
OpeningBrace
An opening brace: {
.
ClosingBrace
A closing brace: }
.
Comma
A comma: ,
.
QuotationMark
A quotation mark: "
.
Equals
An equals sign: =
.
DecimalPoint
A decimal point: .
.
Trait Implementations§
impl Copy for Token
impl StructuralPartialEq for Token
Auto Trait Implementations§
impl Freeze for Token
impl RefUnwindSafe for Token
impl Send for Token
impl Sync for Token
impl Unpin for Token
impl UnwindSafe for Token
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)