pub enum CiteElement {
Paragraph(Paragraph),
Poem(Poem),
Subtitle(Paragraph),
Table(Table),
EmptyLine,
}Variants§
Trait Implementations§
Source§impl Clone for CiteElement
impl Clone for CiteElement
Source§fn clone(&self) -> CiteElement
fn clone(&self) -> CiteElement
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 CiteElement
impl Debug for CiteElement
Source§impl PartialEq for CiteElement
impl PartialEq for CiteElement
Source§impl Serialize for CiteElement
impl Serialize for CiteElement
impl StructuralPartialEq for CiteElement
Auto Trait Implementations§
impl Freeze for CiteElement
impl RefUnwindSafe for CiteElement
impl Send for CiteElement
impl Sync for CiteElement
impl Unpin for CiteElement
impl UnwindSafe for CiteElement
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