Struct titik::renderer::Renderer[][src]

pub struct Renderer<'a, MSG> { /* fields omitted */ }

This provides the render loop of the terminal UI

Implementations

impl<'a, MSG> Renderer<'a, MSG>[src]

pub fn new(
    write: &'a mut dyn Write,
    program: Option<&'a dyn Dispatch<MSG>>,
    root_node: &'a mut dyn Widget<MSG>
) -> Self
[src]

create a new renderer with the supplied root_node

pub fn run(&mut self) -> Result<()>[src]

run the event loop of the renderer

Auto Trait Implementations

impl<'a, MSG> !RefUnwindSafe for Renderer<'a, MSG>

impl<'a, MSG> !Send for Renderer<'a, MSG>

impl<'a, MSG> !Sync for Renderer<'a, MSG>

impl<'a, MSG> Unpin for Renderer<'a, MSG>

impl<'a, MSG> !UnwindSafe for Renderer<'a, MSG>

Blanket Implementations

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> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

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.