Struct usvg::TextSpan

source ·
pub struct TextSpan { /* private fields */ }
Expand description

A text style span.

Spans do not overlap inside a text chunk.

Implementations§

source§

impl TextSpan

source

pub fn start(&self) -> usize

A span start in bytes.

Offset is relative to the parent text chunk and not the parent text element.

source

pub fn end(&self) -> usize

A span end in bytes.

Offset is relative to the parent text chunk and not the parent text element.

source

pub fn fill(&self) -> Option<&Fill>

A fill style.

source

pub fn stroke(&self) -> Option<&Stroke>

A stroke style.

source

pub fn paint_order(&self) -> PaintOrder

A paint order style.

source

pub fn font(&self) -> &Font

A font.

source

pub fn font_size(&self) -> NonZeroPositiveF32

A font size.

source

pub fn small_caps(&self) -> bool

Indicates that small caps should be used.

Set by font-variant="small-caps"

source

pub fn apply_kerning(&self) -> bool

Indicates that a kerning should be applied.

Supports both kerning and font-kerning properties.

source

pub fn decoration(&self) -> &TextDecoration

A span decorations.

source

pub fn dominant_baseline(&self) -> DominantBaseline

A span dominant baseline.

source

pub fn alignment_baseline(&self) -> AlignmentBaseline

A span alignment baseline.

source

pub fn baseline_shift(&self) -> &[BaselineShift]

A list of all baseline shift that should be applied to this span.

Ordered from text element down to the actual span element.

source

pub fn visibility(&self) -> Visibility

A visibility property.

source

pub fn letter_spacing(&self) -> f32

A letter spacing property.

source

pub fn word_spacing(&self) -> f32

A word spacing property.

source

pub fn text_length(&self) -> Option<f32>

A text length property.

source

pub fn length_adjust(&self) -> LengthAdjust

A length adjust property.

Trait Implementations§

source§

impl Clone for TextSpan

source§

fn clone(&self) -> TextSpan

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for TextSpan

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.