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