[][src]Struct oxygengine_composite_renderer::composite_renderer::Text

pub struct Text<'a> {
    pub color: Color,
    pub font: Cow<'a, str>,
    pub align: TextAlign,
    pub baseline: TextBaseLine,
    pub text: Cow<'a, str>,
    pub position: Vec2,
    pub size: Scalar,
    pub max_width: Option<Scalar>,
}

Fields

color: Colorfont: Cow<'a, str>align: TextAlignbaseline: TextBaseLinetext: Cow<'a, str>position: Vec2size: Scalarmax_width: Option<Scalar>

Implementations

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

pub fn new(font: &'a str, text: &'a str) -> Self[src]

pub fn new_owned(font: String, text: String) -> Self[src]

pub fn color(self, color: Color) -> Self[src]

pub fn align(self, align: TextAlign) -> Self[src]

pub fn baseline(self, baseline: TextBaseLine) -> Self[src]

pub fn position(self, position: Vec2) -> Self[src]

pub fn size(self, size: Scalar) -> Self[src]

Trait Implementations

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

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

impl<'a> Default for Text<'a>[src]

impl<'de, 'a> Deserialize<'de> for Text<'a>[src]

impl<'a> From<Text<'a>> for Renderable<'a>[src]

impl<'a> Serialize for Text<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Text<'a>

impl<'a> Send for Text<'a>

impl<'a> Sync for Text<'a>

impl<'a> Unpin for Text<'a>

impl<'a> UnwindSafe for Text<'a>

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> Event for T where
    T: Send + Sync + 'static, 

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

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

impl<T> Resource for T where
    T: Any, 

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> TryDefault for T where
    T: Default

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