[][src]Struct raui::prelude::Application

pub struct Application { /* fields omitted */ }

Implementations

impl Application[src]

pub fn new() -> Application[src]

pub fn is_dirty(&self) -> bool[src]

pub fn mark_dirty(&mut self)[src]

pub fn does_render_changed(&self) -> bool[src]

pub fn tree(&self) -> &WidgetNode[src]

pub fn rendered_tree(&self) -> &WidgetUnit[src]

pub fn apply(&mut self, tree: WidgetNode)[src]

pub fn render<R, T, E>(&self, renderer: &mut R) -> Result<T, E> where
    R: Renderer<T, E>, 
[src]

pub fn render_change<R, T, E>(
    &mut self,
    renderer: &mut R
) -> Result<Option<T>, E> where
    R: Renderer<T, E>, 
[src]

pub fn messenger(&self) -> &MessageSender[src]

pub fn signals(&self) -> &SignalReceiver[src]

pub fn forced_process(&mut self) -> bool[src]

pub fn process(&mut self) -> bool[src]

Trait Implementations

impl Default for Application[src]

Auto Trait Implementations

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, 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.