pub struct TextTagBuilder { /* private fields */ }
Expand description

A builder-pattern type to construct TextTag objects.

Implementations§

source§

impl TextTagBuilder

source

pub fn new() -> Self

Create a new TextTagBuilder.

source

pub fn build(self) -> TextTag

Build the TextTag.

source

pub fn accumulative_margin(self, accumulative_margin: bool) -> Self

source

pub fn allow_breaks(self, allow_breaks: bool) -> Self

source

pub fn allow_breaks_set(self, allow_breaks_set: bool) -> Self

source

pub fn background(self, background: &str) -> Self

source

pub fn background_full_height(self, background_full_height: bool) -> Self

source

pub fn background_full_height_set( self, background_full_height_set: bool ) -> Self

source

pub fn background_rgba(self, background_rgba: &RGBA) -> Self

source

pub fn background_set(self, background_set: bool) -> Self

source

pub fn direction(self, direction: TextDirection) -> Self

source

pub fn editable(self, editable: bool) -> Self

source

pub fn editable_set(self, editable_set: bool) -> Self

source

pub fn fallback(self, fallback: bool) -> Self

source

pub fn fallback_set(self, fallback_set: bool) -> Self

source

pub fn family(self, family: &str) -> Self

source

pub fn family_set(self, family_set: bool) -> Self

source

pub fn font(self, font: &str) -> Self

source

pub fn font_desc(self, font_desc: &FontDescription) -> Self

source

pub fn font_features(self, font_features: &str) -> Self

source

pub fn font_features_set(self, font_features_set: bool) -> Self

source

pub fn foreground(self, foreground: &str) -> Self

source

pub fn foreground_rgba(self, foreground_rgba: &RGBA) -> Self

source

pub fn foreground_set(self, foreground_set: bool) -> Self

source

pub fn indent(self, indent: i32) -> Self

source

pub fn indent_set(self, indent_set: bool) -> Self

source

pub fn insert_hyphens(self, insert_hyphens: bool) -> Self

source

pub fn insert_hyphens_set(self, insert_hyphens_set: bool) -> Self

source

pub fn invisible(self, invisible: bool) -> Self

source

pub fn invisible_set(self, invisible_set: bool) -> Self

source

pub fn justification(self, justification: Justification) -> Self

source

pub fn justification_set(self, justification_set: bool) -> Self

source

pub fn language(self, language: &str) -> Self

source

pub fn language_set(self, language_set: bool) -> Self

source

pub fn left_margin(self, left_margin: i32) -> Self

source

pub fn left_margin_set(self, left_margin_set: bool) -> Self

source

pub fn letter_spacing(self, letter_spacing: i32) -> Self

source

pub fn letter_spacing_set(self, letter_spacing_set: bool) -> Self

source

pub fn line_height(self, line_height: f32) -> Self

Available on crate feature v4_6 only.
source

pub fn line_height_set(self, line_height_set: bool) -> Self

Available on crate feature v4_6 only.
source

pub fn name(self, name: &str) -> Self

source

pub fn overline(self, overline: Overline) -> Self

source

pub fn overline_rgba(self, overline_rgba: &RGBA) -> Self

source

pub fn overline_rgba_set(self, overline_rgba_set: bool) -> Self

source

pub fn overline_set(self, overline_set: bool) -> Self

source

pub fn paragraph_background(self, paragraph_background: &str) -> Self

source

pub fn paragraph_background_rgba(self, paragraph_background_rgba: &RGBA) -> Self

source

pub fn paragraph_background_set(self, paragraph_background_set: bool) -> Self

source

pub fn pixels_above_lines(self, pixels_above_lines: i32) -> Self

source

pub fn pixels_above_lines_set(self, pixels_above_lines_set: bool) -> Self

source

pub fn pixels_below_lines(self, pixels_below_lines: i32) -> Self

source

pub fn pixels_below_lines_set(self, pixels_below_lines_set: bool) -> Self

source

pub fn pixels_inside_wrap(self, pixels_inside_wrap: i32) -> Self

source

pub fn pixels_inside_wrap_set(self, pixels_inside_wrap_set: bool) -> Self

source

pub fn right_margin(self, right_margin: i32) -> Self

source

pub fn right_margin_set(self, right_margin_set: bool) -> Self

source

pub fn rise(self, rise: i32) -> Self

source

pub fn rise_set(self, rise_set: bool) -> Self

source

pub fn scale(self, scale: f64) -> Self

source

pub fn scale_set(self, scale_set: bool) -> Self

source

pub fn sentence(self, sentence: bool) -> Self

Available on crate feature v4_6 only.
source

pub fn sentence_set(self, sentence_set: bool) -> Self

Available on crate feature v4_6 only.
source

pub fn show_spaces(self, show_spaces: ShowFlags) -> Self

source

pub fn show_spaces_set(self, show_spaces_set: bool) -> Self

source

pub fn size(self, size: i32) -> Self

source

pub fn size_points(self, size_points: f64) -> Self

source

pub fn size_set(self, size_set: bool) -> Self

source

pub fn stretch(self, stretch: Stretch) -> Self

source

pub fn stretch_set(self, stretch_set: bool) -> Self

source

pub fn strikethrough(self, strikethrough: bool) -> Self

source

pub fn strikethrough_rgba(self, strikethrough_rgba: &RGBA) -> Self

source

pub fn strikethrough_rgba_set(self, strikethrough_rgba_set: bool) -> Self

source

pub fn strikethrough_set(self, strikethrough_set: bool) -> Self

source

pub fn style(self, style: Style) -> Self

source

pub fn style_set(self, style_set: bool) -> Self

source

pub fn tabs(self, tabs: &TabArray) -> Self

source

pub fn tabs_set(self, tabs_set: bool) -> Self

source

pub fn text_transform(self, text_transform: TextTransform) -> Self

Available on crate feature v4_6 only.
source

pub fn text_transform_set(self, text_transform_set: bool) -> Self

Available on crate feature v4_6 only.
source

pub fn underline(self, underline: Underline) -> Self

source

pub fn underline_rgba(self, underline_rgba: &RGBA) -> Self

source

pub fn underline_rgba_set(self, underline_rgba_set: bool) -> Self

source

pub fn underline_set(self, underline_set: bool) -> Self

source

pub fn variant(self, variant: Variant) -> Self

source

pub fn variant_set(self, variant_set: bool) -> Self

source

pub fn weight(self, weight: i32) -> Self

source

pub fn weight_set(self, weight_set: bool) -> Self

source

pub fn word(self, word: bool) -> Self

Available on crate feature v4_6 only.
source

pub fn word_set(self, word_set: bool) -> Self

Available on crate feature v4_6 only.
source

pub fn wrap_mode(self, wrap_mode: WrapMode) -> Self

source

pub fn wrap_mode_set(self, wrap_mode_set: bool) -> Self

Trait Implementations§

source§

impl Clone for TextTagBuilder

source§

fn clone(&self) -> TextTagBuilder

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 Default for TextTagBuilder

source§

fn default() -> TextTagBuilder

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

const: unstable · source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

const: unstable · 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 Twhere 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 Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
source§

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

§

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

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.