[][src]Struct kludgine::style::Style

pub struct Style {
    pub font_family: Option<String>,
    pub font_size: Option<Points>,
    pub font_style: Option<FontStyle>,
    pub font_weight: Option<Weight>,
    pub color: Option<Color>,
    pub background_color: Option<Color>,
    pub alignment: Option<Alignment>,
}

Fields

font_family: Option<String>font_size: Option<Points>font_style: Option<FontStyle>font_weight: Option<Weight>color: Option<Color>background_color: Option<Color>alignment: Option<Alignment>

Implementations

impl Style[src]

pub fn inherit_from(&self, parent: &Style) -> Self[src]

pub async fn effective_style<'_, '_>(
    &'_ self,
    scene: &'_ SceneTarget
) -> EffectiveStyle
[src]

Trait Implementations

impl Clone for Style[src]

impl Debug for Style[src]

impl Default for Style[src]

impl From<Style> for StyleSheet[src]

Auto Trait Implementations

impl RefUnwindSafe for Style

impl Send for Style

impl Sync for Style

impl Unpin for Style

impl UnwindSafe for Style

Blanket Implementations

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
    D: AdaptFrom<S, Swp, Dwp, T>,
    Dwp: WhitePoint,
    Swp: WhitePoint,
    T: Component + Float
[src]

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> Component for T where
    T: 'static + Send + Sync
[src]

type Storage = PackedStorage<T>

The storage type required to hold all instances of this component in a world.

impl<T, U> ConvertInto<U> for T where
    U: ConvertFrom<T>, 
[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> Resource for T where
    T: 'static, 
[src]

impl<T> SetParameter for T

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,