[−][src]Struct docx_rs::Paragraph
Fields
children: Vec<ParagraphChild>property: ParagraphPropertyhas_numbering: boolattrs: Vec<(String, String)>Methods
impl Paragraph[src]
pub fn new() -> Paragraph[src]
pub fn children(&self) -> &Vec<ParagraphChild>[src]
pub fn add_run(self, run: Run) -> Paragraph[src]
pub fn add_insert(self, insert: Insert) -> Paragraph[src]
pub fn add_delete(self, delete: Delete) -> Paragraph[src]
pub fn add_attr(
self,
key: impl Into<String>,
val: impl Into<String>
) -> Paragraph[src]
self,
key: impl Into<String>,
val: impl Into<String>
) -> Paragraph
pub fn add_bookmark_start(self, id: usize, name: impl Into<String>) -> Paragraph[src]
pub fn add_bookmark_end(self, id: usize) -> Paragraph[src]
pub fn add_comment_start(self, comment: Comment) -> Paragraph[src]
pub fn add_comment_end(self, id: usize) -> Paragraph[src]
pub fn align(self, alignment_type: AlignmentType) -> Paragraph[src]
pub fn style(self, style_id: &str) -> Paragraph[src]
pub fn indent(
self,
left: Option<i32>,
special_indent: Option<SpecialIndentType>,
end: Option<i32>,
start_chars: Option<i32>
) -> Paragraph[src]
self,
left: Option<i32>,
special_indent: Option<SpecialIndentType>,
end: Option<i32>,
start_chars: Option<i32>
) -> Paragraph
pub fn numbering(self, id: NumberingId, level: IndentLevel) -> Self[src]
Trait Implementations
impl Clone for Paragraph[src]
impl Debug for Paragraph[src]
impl Default for Paragraph[src]
impl ElementReader for Paragraph[src]
fn read<R: Read>(
r: &mut EventReader<R>,
attrs: &[OwnedAttribute]
) -> Result<Self, ReaderError>[src]
r: &mut EventReader<R>,
attrs: &[OwnedAttribute]
) -> Result<Self, ReaderError>
impl PartialEq<Paragraph> for Paragraph[src]
impl Serialize for Paragraph[src]
fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
__S: Serializer, [src]
__S: Serializer,
impl StructuralPartialEq for Paragraph[src]
Auto Trait Implementations
impl RefUnwindSafe for Paragraph
impl Send for Paragraph
impl Sync for Paragraph
impl Unpin for Paragraph
impl UnwindSafe for Paragraph
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,