#[non_exhaustive]pub enum SimpleVariable {
Show 50 variants
Doi,
Isbn,
Issn,
Url,
Pmid,
Pmcid,
Abstract,
Note,
Annote,
Keyword,
Genre,
Medium,
Source,
Status,
Archive,
ArchiveLocation,
ArchiveName,
ArchivePlace,
ArchiveCollection,
ArchiveCollectionId,
ArchiveSeries,
ArchiveBox,
ArchiveFolder,
ArchiveItem,
ArchiveUrl,
EprintId,
EprintServer,
EprintClass,
Publisher,
PublisherPlace,
OriginalPublisher,
OriginalPublisherPlace,
EventPlace,
Dimensions,
Scale,
Version,
Locator,
ContainerTitleShort,
Authority,
Code,
Reporter,
Page,
Section,
Volume,
Number,
DocketNumber,
PatentNumber,
StandardNumber,
ReportNumber,
AdsBibcode,
}Expand description
Simple string variables.
Use variable: for string passthrough fields, even when the field name is
also present in NumberVariable. For example, variable: volume keeps the
source value as plain text, while number: volume opts into numeric
formatting behavior.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Doi
Isbn
Issn
Url
Pmid
Pmcid
Abstract
Note
Annote
Keyword
Genre
Medium
Source
Status
Archive
ArchiveLocation
ArchiveName
ArchivePlace
ArchiveCollection
ArchiveCollectionId
ArchiveSeries
ArchiveBox
ArchiveFolder
ArchiveItem
ArchiveUrl
EprintId
EprintServer
EprintClass
Publisher
PublisherPlace
OriginalPublisher
OriginalPublisherPlace
EventPlace
Dimensions
Scale
Version
Locator
ContainerTitleShort
Authority
Code
Reporter
Page
Section
Volume
Number
DocketNumber
PatentNumber
StandardNumber
ReportNumber
AdsBibcode
Trait Implementations§
Source§impl Clone for SimpleVariable
impl Clone for SimpleVariable
Source§fn clone(&self) -> SimpleVariable
fn clone(&self) -> SimpleVariable
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 moreSource§impl Debug for SimpleVariable
impl Debug for SimpleVariable
Source§impl Default for SimpleVariable
impl Default for SimpleVariable
Source§fn default() -> SimpleVariable
fn default() -> SimpleVariable
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SimpleVariable
impl<'de> Deserialize<'de> for SimpleVariable
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<SimpleVariable, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<SimpleVariable, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for SimpleVariable
Source§impl Hash for SimpleVariable
impl Hash for SimpleVariable
Source§impl Ord for SimpleVariable
impl Ord for SimpleVariable
Source§fn cmp(&self, other: &SimpleVariable) -> Ordering
fn cmp(&self, other: &SimpleVariable) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for SimpleVariable
impl PartialEq for SimpleVariable
Source§fn eq(&self, other: &SimpleVariable) -> bool
fn eq(&self, other: &SimpleVariable) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for SimpleVariable
impl PartialOrd for SimpleVariable
Source§impl Serialize for SimpleVariable
impl Serialize for SimpleVariable
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for SimpleVariable
Auto Trait Implementations§
impl Freeze for SimpleVariable
impl RefUnwindSafe for SimpleVariable
impl Send for SimpleVariable
impl Sync for SimpleVariable
impl Unpin for SimpleVariable
impl UnsafeUnpin for SimpleVariable
impl UnwindSafe for SimpleVariable
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§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.