pub struct ParagraphElement {
pub start_index: Option<i32>,
pub end_index: Option<i32>,
pub text_run: Option<TextRun>,
}Expand description
Paragraph element.
Fields§
§start_index: Option<i32>§end_index: Option<i32>§text_run: Option<TextRun>Trait Implementations§
Source§impl Clone for ParagraphElement
impl Clone for ParagraphElement
Source§fn clone(&self) -> ParagraphElement
fn clone(&self) -> ParagraphElement
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ParagraphElement
impl Debug for ParagraphElement
Source§impl<'de> Deserialize<'de> for ParagraphElement
impl<'de> Deserialize<'de> for ParagraphElement
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ParagraphElement
impl RefUnwindSafe for ParagraphElement
impl Send for ParagraphElement
impl Sync for ParagraphElement
impl Unpin for ParagraphElement
impl UnsafeUnpin for ParagraphElement
impl UnwindSafe for ParagraphElement
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