ori::prelude

Trait AnyView

Source
pub trait AnyView<T> {
    // Required methods
    fn as_any(&self) -> &(dyn Any + 'static);
    fn dyn_build(
        &mut self,
        cx: &mut BuildCx<'_, '_>,
        data: &mut T,
    ) -> Box<dyn Any>;
    fn dyn_rebuild(
        &mut self,
        state: &mut Box<dyn Any>,
        cx: &mut RebuildCx<'_, '_>,
        data: &mut T,
        old: &dyn AnyView<T>,
    );
    fn dyn_event(
        &mut self,
        state: &mut Box<dyn Any>,
        cx: &mut EventCx<'_, '_>,
        data: &mut T,
        event: &Event,
    ) -> bool;
    fn dyn_layout(
        &mut self,
        state: &mut Box<dyn Any>,
        cx: &mut LayoutCx<'_, '_>,
        data: &mut T,
        space: Space,
    ) -> Size;
    fn dyn_draw(
        &mut self,
        state: &mut Box<dyn Any>,
        cx: &mut DrawCx<'_, '_>,
        data: &mut T,
    );
}
Expand description

A view that supports dynamic dispatch.

Required Methods§

Source

fn as_any(&self) -> &(dyn Any + 'static)

Get a reference to the underlying Any object.

Source

fn dyn_build(&mut self, cx: &mut BuildCx<'_, '_>, data: &mut T) -> Box<dyn Any>

Build the view.

Source

fn dyn_rebuild( &mut self, state: &mut Box<dyn Any>, cx: &mut RebuildCx<'_, '_>, data: &mut T, old: &dyn AnyView<T>, )

Rebuild the view.

Source

fn dyn_event( &mut self, state: &mut Box<dyn Any>, cx: &mut EventCx<'_, '_>, data: &mut T, event: &Event, ) -> bool

Handle an event.

Source

fn dyn_layout( &mut self, state: &mut Box<dyn Any>, cx: &mut LayoutCx<'_, '_>, data: &mut T, space: Space, ) -> Size

Calculate the layout.

Source

fn dyn_draw( &mut self, state: &mut Box<dyn Any>, cx: &mut DrawCx<'_, '_>, data: &mut T, )

Draw the view.

Trait Implementations§

Source§

impl<T> View<T> for Box<dyn AnyView<T>>

Source§

type State = Box<dyn Any>

The state of the view, see top-level documentation for more information.
Source§

fn build( &mut self, cx: &mut BuildCx<'_, '_>, data: &mut T, ) -> <Box<dyn AnyView<T>> as View<T>>::State

Build the view state, see top-level documentation for more information.
Source§

fn rebuild( &mut self, state: &mut <Box<dyn AnyView<T>> as View<T>>::State, cx: &mut RebuildCx<'_, '_>, data: &mut T, old: &Box<dyn AnyView<T>>, )

Rebuild the view state, see top-level documentation for more information.
Source§

fn event( &mut self, state: &mut <Box<dyn AnyView<T>> as View<T>>::State, cx: &mut EventCx<'_, '_>, data: &mut T, event: &Event, ) -> bool

Handle an event, see top-level documentation for more information.
Source§

fn layout( &mut self, state: &mut <Box<dyn AnyView<T>> as View<T>>::State, cx: &mut LayoutCx<'_, '_>, data: &mut T, space: Space, ) -> Size

Layout the view, see top-level documentation for more information.
Source§

fn draw( &mut self, state: &mut <Box<dyn AnyView<T>> as View<T>>::State, cx: &mut DrawCx<'_, '_>, data: &mut T, )

Draw the view, see top-level documentation for more information.

Implementors§

Source§

impl<T, V> AnyView<T> for V
where V: View<T> + Any, <V as View<T>>::State: Any,