pub enum SectionChild {
Paragraph(Box<Paragraph>),
Table(Box<Table>),
BookmarkStart(BookmarkStart),
BookmarkEnd(BookmarkEnd),
CommentStart(Box<CommentRangeStart>),
CommentEnd(CommentRangeEnd),
StructuredDataTag(Box<StructuredDataTag>),
TableOfContents(Box<TableOfContents>),
}Variants§
Paragraph(Box<Paragraph>)
Table(Box<Table>)
BookmarkStart(BookmarkStart)
BookmarkEnd(BookmarkEnd)
CommentStart(Box<CommentRangeStart>)
CommentEnd(CommentRangeEnd)
StructuredDataTag(Box<StructuredDataTag>)
TableOfContents(Box<TableOfContents>)
Trait Implementations§
Source§impl Clone for SectionChild
impl Clone for SectionChild
Source§fn clone(&self) -> SectionChild
fn clone(&self) -> SectionChild
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 SectionChild
impl Debug for SectionChild
Source§impl PartialEq for SectionChild
impl PartialEq for SectionChild
Source§impl Serialize for SectionChild
impl Serialize for SectionChild
impl BuildXML for SectionChild
impl StructuralPartialEq for SectionChild
Auto Trait Implementations§
impl Freeze for SectionChild
impl RefUnwindSafe for SectionChild
impl Send for SectionChild
impl Sync for SectionChild
impl Unpin for SectionChild
impl UnwindSafe for SectionChild
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