pub struct RunProps {
pub bold: Option<bool>,
pub italic: Option<bool>,
pub underline: Option<bool>,
pub strike: Option<bool>,
pub size: Option<u32>,
pub hyperlink: Option<String>,
pub lang: Option<String>,
pub typeface: Option<String>,
}Expand description
Run-level character properties that survive extraction (21.1.2.3.9).
Fields§
§bold: Option<bool>§italic: Option<bool>§underline: Option<bool>§strike: Option<bool>§size: Option<u32>Font size in hundredths of a point.
hyperlink: Option<String>Relationship id of a click hyperlink.
lang: Option<String>§typeface: Option<String>Trait Implementations§
impl Eq for RunProps
impl StructuralPartialEq for RunProps
Auto Trait Implementations§
impl Freeze for RunProps
impl RefUnwindSafe for RunProps
impl Send for RunProps
impl Sync for RunProps
impl Unpin for RunProps
impl UnsafeUnpin for RunProps
impl UnwindSafe for RunProps
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