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