[][src]Struct luminance_glyph::Section

pub struct Section<'a, X = Extra> {
    pub screen_position: (f32, f32),
    pub bounds: (f32, f32),
    pub layout: Layout<BuiltInLineBreaker>,
    pub text: Vec<Text<'a, X>, Global>,
}

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.

Example

use glyph_brush::{HorizontalAlign, Layout, Text, Section};

let section = Section::default()
    .add_text(Text::new("The last word was ").with_color([0.0, 0.0, 0.0, 1.0]))
    .add_text(Text::new("RED").with_color([1.0, 0.0, 0.0, 1.0]))
    .with_layout(Layout::default().h_align(HorizontalAlign::Center));

Extra

Extra text section data is stored in a generic type, default Extra. To use custom extra data ensure your custom type implements Debug, Clone, PartialEq & Hash.

Fields

screen_position: (f32, f32)

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

bounds: (f32, f32)

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

layout: Layout<BuiltInLineBreaker>

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

text: Vec<Text<'a, X>, Global>

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

Implementations

impl<'a, X> Section<'a, X>[src]

pub fn new() -> Section<'a, X>[src]

impl<'a, X> Section<'a, X>[src]

pub fn with_screen_position<P>(self, position: P) -> Section<'a, X> where
    P: Into<(f32, f32)>, 
[src]

pub fn with_bounds<P>(self, bounds: P) -> Section<'a, X> where
    P: Into<(f32, f32)>, 
[src]

pub fn with_layout<L>(self, layout: L) -> Section<'a, X> where
    L: Into<Layout<BuiltInLineBreaker>>, 
[src]

pub fn add_text<T>(self, text: T) -> Section<'a, X> where
    T: Into<Text<'a, X>>, 
[src]

pub fn with_text<X2>(self, text: Vec<Text<'b, X2>, Global>) -> Section<'b, X2>[src]

impl<'text, X> Section<'text, X> where
    X: Clone
[src]

pub fn to_owned(&self) -> OwnedSection<X>[src]

Trait Implementations

impl<'a, X> Clone for Section<'a, X> where
    X: Clone
[src]

impl<'a, X> Debug for Section<'a, X> where
    X: Debug
[src]

impl Default for Section<'static, Extra>[src]

impl<'_, '_, X> From<&'_ Section<'_, X>> for SectionGeometry[src]

impl<'a, '_> From<&'_ Section<'a>> for Section<'a, Extra>[src]

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

impl<'a> From<&'a OwnedSection<Extra>> for Section<'a, Extra>[src]

impl<'a> From<&'a OwnedVariedSection> for Section<'a, Extra>[src]

impl<'a> From<Section<'a>> for Section<'a, Extra>[src]

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

impl<'_, X> Hash for Section<'_, X> where
    X: Hash
[src]

impl<'a, X> PartialEq<Section<'a, X>> for Section<'a, X> where
    X: PartialEq<X>, 
[src]

impl<'a, X> StructuralPartialEq for Section<'a, X>[src]

Auto Trait Implementations

impl<'a, X> RefUnwindSafe for Section<'a, X> where
    X: RefUnwindSafe

impl<'a, X> Send for Section<'a, X> where
    X: Send

impl<'a, X> Sync for Section<'a, X> where
    X: Sync

impl<'a, X> Unpin for Section<'a, X> where
    X: Unpin

impl<'a, X> UnwindSafe for Section<'a, X> where
    X: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,