pub struct ResolvedRunStyle {Show 14 fields
pub font_size: Option<f64>,
pub bold: bool,
pub italic: bool,
pub all_caps: bool,
pub underline: bool,
pub strike: bool,
pub spacing: Option<f64>,
pub baseline: Option<f64>,
pub fill: Option<Paint>,
pub latin_typeface: Option<String>,
pub east_asian_typeface: Option<String>,
pub complex_script_typeface: Option<String>,
pub symbol_typeface: Option<String>,
pub hyperlink_url: Option<String>,
}Expand description
Concrete renderer-visible properties of one text run.
Fields§
§font_size: Option<f64>§bold: bool§italic: bool§all_caps: bool§underline: bool§strike: bool§spacing: Option<f64>§baseline: Option<f64>§fill: Option<Paint>§latin_typeface: Option<String>§east_asian_typeface: Option<String>§complex_script_typeface: Option<String>§symbol_typeface: Option<String>§hyperlink_url: Option<String>Direct external URI resolved in the run’s producing relationship scope.
Trait Implementations§
Source§impl Clone for ResolvedRunStyle
impl Clone for ResolvedRunStyle
Source§fn clone(&self) -> ResolvedRunStyle
fn clone(&self) -> ResolvedRunStyle
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 ResolvedRunStyle
impl Debug for ResolvedRunStyle
Source§impl Default for ResolvedRunStyle
impl Default for ResolvedRunStyle
Source§fn default() -> ResolvedRunStyle
fn default() -> ResolvedRunStyle
Returns the “default value” for a type. Read more
Source§impl PartialEq for ResolvedRunStyle
impl PartialEq for ResolvedRunStyle
impl StructuralPartialEq for ResolvedRunStyle
Auto Trait Implementations§
impl Freeze for ResolvedRunStyle
impl RefUnwindSafe for ResolvedRunStyle
impl Send for ResolvedRunStyle
impl Sync for ResolvedRunStyle
impl Unpin for ResolvedRunStyle
impl UnsafeUnpin for ResolvedRunStyle
impl UnwindSafe for ResolvedRunStyle
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