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