pub enum NoteStartTextCase {
CapitalizeFirst,
Lowercase,
}Expand description
Text-case transform applied when a citation renders at note start.
Variants§
CapitalizeFirst
Uppercase the first character of the rendered citation.
Lowercase
Lowercase the rendered citation text.
Trait Implementations§
Source§impl Clone for NoteStartTextCase
impl Clone for NoteStartTextCase
Source§fn clone(&self) -> NoteStartTextCase
fn clone(&self) -> NoteStartTextCase
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 moreimpl Copy for NoteStartTextCase
Source§impl Debug for NoteStartTextCase
impl Debug for NoteStartTextCase
Source§impl<'de> Deserialize<'de> for NoteStartTextCase
impl<'de> Deserialize<'de> for NoteStartTextCase
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<NoteStartTextCase, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<NoteStartTextCase, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for NoteStartTextCase
Source§impl PartialEq for NoteStartTextCase
impl PartialEq for NoteStartTextCase
Source§fn eq(&self, other: &NoteStartTextCase) -> bool
fn eq(&self, other: &NoteStartTextCase) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for NoteStartTextCase
impl Serialize for NoteStartTextCase
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 NoteStartTextCase
Auto Trait Implementations§
impl Freeze for NoteStartTextCase
impl RefUnwindSafe for NoteStartTextCase
impl Send for NoteStartTextCase
impl Sync for NoteStartTextCase
impl Unpin for NoteStartTextCase
impl UnsafeUnpin for NoteStartTextCase
impl UnwindSafe for NoteStartTextCase
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.