Struct wgpu_glyph::Section[][src]

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>,
}
Expand description

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<'_, X2>, Global>) -> Section<'_, 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]

pub fn clone(&self) -> Section<'a, X>[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

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

pub fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>[src]

Formats the value using the given formatter. Read more

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

pub fn default() -> Section<'static, Extra>[src]

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

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

pub fn from(section: &Section<'_, X>) -> SectionGeometry[src]

Performs the conversion.

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

pub fn from(s: &Section<'a>) -> Section<'a, Extra>[src]

Performs the conversion.

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

pub fn from(s: &VariedSection<'a>) -> Section<'a, Extra>[src]

Performs the conversion.

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

pub fn from(owned: &'a OwnedSection<Extra>) -> Section<'a, Extra>[src]

Performs the conversion.

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

pub fn from(owned: &'a OwnedVariedSection) -> Section<'a, Extra>[src]

Performs the conversion.

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

pub fn from(s: Section<'a>) -> Section<'a, Extra>[src]

Performs the conversion.

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

pub fn from(s: VariedSection<'a>) -> Section<'a, Extra>[src]

Performs the conversion.

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

pub fn hash<H>(&self, state: &mut H) where
    H: Hasher
[src]

Feeds this value into the given Hasher. Read more

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

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

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

pub fn eq(&self, other: &Section<'a, X>) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

pub fn ne(&self, other: &Section<'a, X>) -> bool[src]

This method tests for !=.

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]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

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

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> CallHasher for T where
    T: Hash

pub fn get_hash<H>(&self, hasher: H) -> u64 where
    H: Hasher

impl<T> Downcast<T> for T

pub fn downcast(&self) -> &T

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

pub fn from(t: T) -> T[src]

Performs the conversion.

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

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> Pointable for T

pub const ALIGN: usize

The alignment of pointer.

type Init = T

The type for initializers.

pub unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more

pub unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more

pub unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more

pub unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more

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

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

Creates owned data from borrowed data, usually by cloning. Read more

pub fn clone_into(&self, target: &mut T)[src]

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

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.

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

Performs the conversion.

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.

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

Performs the conversion.

impl<T> Upcast<T> for T

pub fn upcast(&self) -> Option<&T>

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

pub fn vzip(self) -> V