Struct usvg::Text[][src]

pub struct Text {
    pub id: String,
    pub transform: Transform,
    pub rotate: Option<NumberList>,
    pub chunks: Vec<TextChunk>,
}

A text element.

text element in the SVG.

Fields

Element's ID.

Taken from the SVG itself. Isn't automatically generated. Can be empty.

Element transform.

Rotate

A list of text chunks.

Auto Trait Implementations

impl Send for Text

impl Sync for Text