[][src]Struct tetra::graphics::text::Text

pub struct Text { /* fields omitted */ }

A piece of text that can be rendered.

Methods

impl Text[src]

pub fn new<S>(content: S, font: Font, size: f32) -> Text where
    S: Into<String>, 
[src]

Creates a new Text, with the given content, font and scale.

pub fn content(&self) -> &str[src]

Gets the content of the text.

pub fn set_content<S>(&mut self, content: S) where
    S: Into<String>, 
[src]

Sets the content of the text.

pub fn get_bounds(&self, ctx: &mut Context) -> Option<Rectangle>[src]

Get the outer bounds of the text when rendered to the screen.

If the text is not rendered yet, this method will re-render it and calculate the bounds. The bounds are automatically cached, so calling this multiple times will only render once.

Note that this method will not take into account the positioning applied to the text via DrawParams.

pub fn font(&self) -> &Font[src]

Gets the font of the text.

pub fn set_font(&mut self, font: Font)[src]

Sets the font of the text.

pub fn size(&self) -> f32[src]

Gets the size of the text.

pub fn set_size(&mut self, size: f32)[src]

Sets the size of the text.

Trait Implementations

impl Drawable for Text[src]

Auto Trait Implementations

impl Send for Text

impl !Sync for Text

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto 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<T> Borrow for T where
    T: ?Sized
[src]

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

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

impl<T> SetParameter for T

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 

Sets value as a parameter of self.

impl<T> Same for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf for SP where
    SS: SubsetOf<SP>,