pub enum ItemQuotePosition {
Before,
After,
}
Expand description
Where should a item quote appear?
Variants§
Before
Should appear just before the item in the extraction
After
Should appear right after the item in the extraction
Trait Implementations§
Source§impl Clone for ItemQuotePosition
impl Clone for ItemQuotePosition
Source§fn clone(&self) -> ItemQuotePosition
fn clone(&self) -> ItemQuotePosition
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 ItemQuotePosition
impl Debug for ItemQuotePosition
Source§impl<'de> Deserialize<'de> for ItemQuotePosition
impl<'de> Deserialize<'de> for ItemQuotePosition
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for ItemQuotePosition
impl Serialize for ItemQuotePosition
impl Copy for ItemQuotePosition
Auto Trait Implementations§
impl Freeze for ItemQuotePosition
impl RefUnwindSafe for ItemQuotePosition
impl Send for ItemQuotePosition
impl Sync for ItemQuotePosition
impl Unpin for ItemQuotePosition
impl UnwindSafe for ItemQuotePosition
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