[][src]Struct azul_core::window::HotReloader

pub struct HotReloader(pub Box<dyn HotReloadHandler>);

Implementations

impl HotReloader[src]

pub fn new(hot_reload_handler: Box<dyn HotReloadHandler>) -> Self[src]

pub fn get_reload_interval(&self) -> Duration[src]

pub fn reload_style(&self) -> Result<Css, String>[src]

Reloads the CSS (if possible).

Returns:

  • Ok(css) if the CSS has been successfully reloaded
  • Err(why) if the CSS failed to hot-reload.

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.