pub enum TemplateReference {
Preset(TemplatePreset),
Uri(String),
}Expand description
A reference to a template, which can be either a named builtin preset
or a URI (e.g., file://..., @hub/..., https://...).
Variants§
Preset(TemplatePreset)
A named builtin template preset.
Uri(String)
A URI reference to a remote or local template.
Implementations§
Source§impl TemplateReference
impl TemplateReference
Sourcepub fn citation_template(&self) -> Option<Vec<TemplateComponent>>
pub fn citation_template(&self) -> Option<Vec<TemplateComponent>>
Resolve this reference to a citation template when it names a built-in preset.
Sourcepub fn bibliography_template(&self) -> Option<Vec<TemplateComponent>>
pub fn bibliography_template(&self) -> Option<Vec<TemplateComponent>>
Resolve this reference to a bibliography template when it names a built-in preset.
Trait Implementations§
Source§impl Clone for TemplateReference
impl Clone for TemplateReference
Source§fn clone(&self) -> TemplateReference
fn clone(&self) -> TemplateReference
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 TemplateReference
impl Debug for TemplateReference
Source§impl<'de> Deserialize<'de> for TemplateReference
impl<'de> Deserialize<'de> for TemplateReference
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<TemplateReference, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<TemplateReference, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for TemplateReference
Source§impl From<TemplatePreset> for TemplateReference
impl From<TemplatePreset> for TemplateReference
Source§fn from(preset: TemplatePreset) -> TemplateReference
fn from(preset: TemplatePreset) -> TemplateReference
Converts to this type from the input type.
Source§impl PartialEq for TemplateReference
impl PartialEq for TemplateReference
Source§fn eq(&self, other: &TemplateReference) -> bool
fn eq(&self, other: &TemplateReference) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for TemplateReference
impl Serialize for TemplateReference
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 TemplateReference
Auto Trait Implementations§
impl Freeze for TemplateReference
impl RefUnwindSafe for TemplateReference
impl Send for TemplateReference
impl Sync for TemplateReference
impl Unpin for TemplateReference
impl UnsafeUnpin for TemplateReference
impl UnwindSafe for TemplateReference
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,
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.