[][src]Struct bevy_text::TextPipeline

pub struct TextPipeline<ID> { /* fields omitted */ }

Implementations

impl<ID: Hash + Eq> TextPipeline<ID>[src]

pub fn get_or_insert_font_id(
    &mut self,
    handle: Handle<Font>,
    font: &Font
) -> FontId
[src]

pub fn get_glyphs(&self, id: &ID) -> Option<&TextLayoutInfo>[src]

pub fn queue_text(
    &mut self,
    id: ID,
    font_handle: Handle<Font>,
    fonts: &Assets<Font>,
    text: &str,
    font_size: f32,
    text_alignment: TextAlignment,
    bounds: Size,
    font_atlas_set_storage: &mut Assets<FontAtlasSet>,
    texture_atlases: &mut Assets<TextureAtlas>,
    textures: &mut Assets<Texture>
) -> Result<(), TextError>
[src]

Trait Implementations

impl<ID> Default for TextPipeline<ID>[src]

Auto Trait Implementations

impl<ID> !RefUnwindSafe for TextPipeline<ID>[src]

impl<ID> Send for TextPipeline<ID> where
    ID: Send
[src]

impl<ID> Sync for TextPipeline<ID> where
    ID: Sync
[src]

impl<ID> Unpin for TextPipeline<ID> where
    ID: Unpin
[src]

impl<ID> !UnwindSafe for TextPipeline<ID>[src]

Blanket Implementations

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

impl<T> Any for T where
    T: Any

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

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

impl<T> Component for T where
    T: 'static + Send + Sync
[src]

impl<T> Downcast for T where
    T: Any

impl<T> DowncastSync for T where
    T: Send + Sync + Any

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

impl<T> FromResources for T where
    T: Default
[src]

impl<T> Instrument for T[src]

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

impl<T> Resource for T where
    T: 'static + Send + Sync
[src]

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>,