Trait limn_core::style::ModifierComponentStyle
[−]
[src]
pub trait ModifierComponentStyle: Debug + Send { fn box_merge(
self: Box<Self>,
lower: Box<ModifierComponentStyle>
) -> Box<ModifierComponentStyle>; fn box_component(self: Box<Self>) -> Box<WidgetModifier>; fn box_clone(&self) -> Box<ModifierComponentStyle>; fn as_any(&self) -> &Any; }
Required Methods
ⓘImportant traits for Box<I>
fn box_merge(
self: Box<Self>,
lower: Box<ModifierComponentStyle>
) -> Box<ModifierComponentStyle>
self: Box<Self>,
lower: Box<ModifierComponentStyle>
) -> Box<ModifierComponentStyle>
ⓘImportant traits for Box<I>
fn box_component(self: Box<Self>) -> Box<WidgetModifier>
ⓘImportant traits for Box<I>
fn box_clone(&self) -> Box<ModifierComponentStyle>
fn as_any(&self) -> &Any
Implementors
impl<T: WidgetModifier + Component + 'static, C: ComponentStyle<Component = T> + Debug + Send> ModifierComponentStyle for C