pub enum StringValueType {
Str(String),
Abbreviation(String),
}Expand description
Represent a Bibtex value which is composed of
- strings value
- string variable/abbreviation which will be expanded after parsing.
Variants§
Str(String)
Just a basic string.
Abbreviation(String)
An abbreviation that should match some string variable.
Trait Implementations§
Source§impl Clone for StringValueType
impl Clone for StringValueType
Source§fn clone(&self) -> StringValueType
fn clone(&self) -> StringValueType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for StringValueType
impl Debug for StringValueType
Source§impl PartialEq for StringValueType
impl PartialEq for StringValueType
impl Eq for StringValueType
impl StructuralPartialEq for StringValueType
Auto Trait Implementations§
impl Freeze for StringValueType
impl RefUnwindSafe for StringValueType
impl Send for StringValueType
impl Sync for StringValueType
impl Unpin for StringValueType
impl UnwindSafe for StringValueType
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