[][src]Struct alchemy_styles::styles::Appearance

pub struct Appearance {
    pub background_color: Color,
    pub font_size: f32,
    pub font_style: FontStyle,
    pub font_weight: FontWeight,
    pub opacity: f32,
    pub text_alignment: TextAlignment,
    pub text_color: Color,
    pub text_decoration_color: Color,
    pub text_shadow_color: Color,
    pub tint_color: Color,
}

When applying layout to a backing view, you'll get two calls - one with a Layout, which contains the computed frame, and one with an Appearance, which contains things like colors, fonts, and so on.

Fields

background_color: Colorfont_size: f32font_style: FontStylefont_weight: FontWeightopacity: f32text_alignment: TextAlignmenttext_color: Colortext_decoration_color: Colortext_shadow_color: Colortint_color: Color

Trait Implementations

impl Default for Appearance[src]

Auto Trait Implementations

impl Send for Appearance

impl Sync for Appearance

Blanket Implementations

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

impl<T> From<T> for T[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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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