Type Alias iced::widget::text::Fragment

source ·
pub type Fragment<'a> = Cow<'a, str>;
Expand description

A fragment of Text.

This is just an alias to a string that may be either borrowed or owned.

Aliased Type§

enum Fragment<'a> {
    Borrowed(&'a str),
    Owned(String),
}

Variants§

§1.0.0

Borrowed(&'a str)

Borrowed data.

§1.0.0

Owned(String)

Owned data.