Struct gfx_glyph::VariedSection [] [src]

pub struct VariedSection<'a> {
    pub screen_position: (f32, f32),
    pub bounds: (f32, f32),
    pub z: f32,
    pub layout: Layout<BuiltInLineBreaker>,
    pub text: Vec<SectionText<'a>>,
}

An object that contains all the info to render a varied section of text. That is one including many parts with differing fonts/scales/colors bowing to a single layout.

For single font/scale/color sections it may be simpler to use Section.

Example

use gfx_glyph::{VariedSection, SectionText};

let section = VariedSection {
    text: vec![
        SectionText {
            text: "I looked around and it was ",
            ..SectionText::default()
        },
        SectionText {
            text: "RED",
            color: [1.0, 0.0, 0.0, 1.0],
            ..SectionText::default()
        },
    ],
    ..VariedSection::default()
};

Fields

Position on screen to render text, in pixels from top-left. Defaults to (0, 0).

Max (width, height) bounds, in pixels from top-left. Defaults to unbounded.

Z values for use in depth testing. Defaults to 0.0

Built in layout, can be overridden with custom layout logic see queue_custom_layout

Text to render, rendered next to one another according the layout.

Methods

impl<'a> VariedSection<'a>
[src]

Trait Implementations

impl<'a> Debug for VariedSection<'a>
[src]

[src]

Formats the value using the given formatter. Read more

impl<'a> Clone for VariedSection<'a>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Default for VariedSection<'static>
[src]

[src]

Returns the "default value" for a type. Read more

impl<'a> From<VariedSection<'a>> for Cow<'a, VariedSection<'a>>
[src]

[src]

Performs the conversion.

impl<'a, 'b> From<&'b VariedSection<'a>> for Cow<'b, VariedSection<'a>>
[src]

[src]

Performs the conversion.

impl<'a> Hash for VariedSection<'a>
[src]

[src]

Feeds this value into the given [Hasher]. Read more

1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl<'a, 'b> From<&'b Section<'a>> for VariedSection<'a>
[src]

[src]

Performs the conversion.

impl<'a> From<Section<'a>> for VariedSection<'a>
[src]

[src]

Performs the conversion.

impl<'a, 'b> From<&'b VariedSection<'a>> for SectionGlyphInfo<'a>
[src]

[src]

Performs the conversion.

impl<'a> From<&'a OwnedVariedSection> for VariedSection<'a>
[src]

[src]

Performs the conversion.

Auto Trait Implementations

impl<'a> Send for VariedSection<'a>

impl<'a> Sync for VariedSection<'a>