ori::core::style

Trait Stylable

Source
pub trait Stylable {
    type Style: Style;

    // Required method
    fn style(&self, base: &Self::Style) -> Self::Style;

    // Provided method
    fn rebuild_style(&self, cx: &mut RebuildCx<'_, '_>, style: &mut Self::Style)
       where Self::Style: Rebuild + 'static { ... }
}
Expand description

A trait for stylable objects.

Required Associated Types§

Source

type Style: Style

The style type.

Required Methods§

Source

fn style(&self, base: &Self::Style) -> Self::Style

Style the object.

This is done by creating a new style based on the given base style.

Provided Methods§

Source

fn rebuild_style(&self, cx: &mut RebuildCx<'_, '_>, style: &mut Self::Style)
where Self::Style: Rebuild + 'static,

Rebuild the style of the object.

Implementors§