[][src]Struct widgetry::text::TextSpan

pub struct TextSpan {
    text: String,
    fg_color: Color,
    size: usize,
    font: Font,
    underlined: bool,
}

Fields

text: Stringfg_color: Colorsize: usizefont: Fontunderlined: bool

Implementations

impl TextSpan[src]

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

pub fn maybe_fg(self, color: Option<Color>) -> TextSpan[src]

pub fn draw(self, ctx: &EventCtx<'_>) -> Widget[src]

pub fn batch(self, ctx: &EventCtx<'_>) -> Widget[src]

pub fn display_title(self) -> TextSpan[src]

pub fn big_heading_styled(self) -> TextSpan[src]

pub fn big_heading_plain(self) -> TextSpan[src]

pub fn small_heading(self) -> TextSpan[src]

pub fn body(self) -> TextSpan[src]

pub fn secondary(self) -> TextSpan[src]

pub fn small(self) -> TextSpan[src]

pub fn big_monospaced(self) -> TextSpan[src]

pub fn small_monospaced(self) -> TextSpan[src]

pub fn underlined(self) -> TextSpan[src]

pub fn size(self, size: usize) -> TextSpan[src]

pub fn font(self, font: Font) -> TextSpan[src]

impl TextSpan[src]

pub fn render_curvey<A: AsRef<Assets>>(
    self,
    assets: &A,
    path: &PolyLine,
    scale: f64
) -> GeomBatch
[src]

Trait Implementations

impl Clone for TextSpan[src]

impl Debug for TextSpan[src]

Auto Trait Implementations

impl RefUnwindSafe for TextSpan[src]

impl Send for TextSpan[src]

impl Sync for TextSpan[src]

impl Unpin for TextSpan[src]

impl UnwindSafe for TextSpan[src]

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> 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, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

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.