Struct docx_rs::StructuredDataTag
source · [−]pub struct StructuredDataTag {
pub children: Vec<StructuredDataTagChild>,
pub property: StructuredDataTagProperty,
pub has_numbering: bool,
}
Fields
children: Vec<StructuredDataTagChild>
property: StructuredDataTagProperty
has_numbering: bool
Implementations
sourceimpl StructuredDataTag
impl StructuredDataTag
pub fn new() -> Self
pub fn add_run(self, run: Run) -> Self
pub fn add_paragraph(self, p: Paragraph) -> Self
pub fn add_table(self, t: Table) -> Self
pub fn data_binding(self, d: DataBinding) -> Self
Trait Implementations
sourceimpl Clone for StructuredDataTag
impl Clone for StructuredDataTag
sourcefn clone(&self) -> StructuredDataTag
fn clone(&self) -> StructuredDataTag
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for StructuredDataTag
impl Debug for StructuredDataTag
sourceimpl Default for StructuredDataTag
impl Default for StructuredDataTag
sourceimpl ElementReader for StructuredDataTag
impl ElementReader for StructuredDataTag
fn read<R: Read>(
r: &mut EventReader<R>,
attrs: &[OwnedAttribute]
) -> Result<Self, ReaderError>
sourceimpl PartialEq<StructuredDataTag> for StructuredDataTag
impl PartialEq<StructuredDataTag> for StructuredDataTag
sourcefn eq(&self, other: &StructuredDataTag) -> bool
fn eq(&self, other: &StructuredDataTag) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourceimpl Serialize for StructuredDataTag
impl Serialize for StructuredDataTag
impl StructuralPartialEq for StructuredDataTag
Auto Trait Implementations
impl RefUnwindSafe for StructuredDataTag
impl Send for StructuredDataTag
impl Sync for StructuredDataTag
impl Unpin for StructuredDataTag
impl UnwindSafe for StructuredDataTag
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more