pub enum StructuredDataTagChild {
Run(Box<Run>),
Paragraph(Box<Paragraph>),
Table(Box<Table>),
StructuredDataTag(Box<StructuredDataTag>),
}
Variants§
Run(Box<Run>)
Paragraph(Box<Paragraph>)
Table(Box<Table>)
StructuredDataTag(Box<StructuredDataTag>)
Trait Implementations§
Source§impl Clone for StructuredDataTagChild
impl Clone for StructuredDataTagChild
Source§fn clone(&self) -> StructuredDataTagChild
fn clone(&self) -> StructuredDataTagChild
Returns a copy 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 StructuredDataTagChild
impl Debug for StructuredDataTagChild
Source§impl PartialEq for StructuredDataTagChild
impl PartialEq for StructuredDataTagChild
Source§impl Serialize for StructuredDataTagChild
impl Serialize for StructuredDataTagChild
impl StructuralPartialEq for StructuredDataTagChild
Auto Trait Implementations§
impl Freeze for StructuredDataTagChild
impl RefUnwindSafe for StructuredDataTagChild
impl Send for StructuredDataTagChild
impl Sync for StructuredDataTagChild
impl Unpin for StructuredDataTagChild
impl UnwindSafe for StructuredDataTagChild
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