Skip to main content

ManagedApplication

Struct ManagedApplication 

Source
pub struct ManagedApplication<TPage: 'static> { /* private fields */ }

Implementations§

Source§

impl<TPage: 'static> ManagedApplication<TPage>

Source

pub fn new<TNode: Node + 'static>( build_page: impl Fn() -> TPage + 'static, get_root: impl Fn(&TPage) -> TNode + 'static, ) -> Self

Source

pub fn mount_page(self, callback: impl Fn(&TPage) + 'static) -> Self

Source

pub fn dispose_page(self, callback: impl Fn(&TPage) + 'static) -> Self

Source

pub fn run(&self)

Source

pub fn dispose(&self)

Source

pub fn get_active_page(&self) -> Option<Rc<TPage>>

Source

pub fn use_system_theme(&self) -> Theme

Source

pub fn use_custom_theme(&self, value: Theme) -> Theme

Source

pub fn set_accent_color(&self, color: u32) -> Theme

Source

pub fn is_dark_mode(&self) -> bool

Source

pub fn is_using_system_theme(&self) -> bool

Source

pub fn get_theme(&self) -> Theme

Source

pub fn flush_renders(&self)

Source

pub fn capture_persisted_ui_state(&self)

Source

pub fn restore_persisted_ui_state(&self)

Auto Trait Implementations§

§

impl<TPage> !Freeze for ManagedApplication<TPage>

§

impl<TPage> !RefUnwindSafe for ManagedApplication<TPage>

§

impl<TPage> !Send for ManagedApplication<TPage>

§

impl<TPage> !Sync for ManagedApplication<TPage>

§

impl<TPage> !UnwindSafe for ManagedApplication<TPage>

§

impl<TPage> Unpin for ManagedApplication<TPage>

§

impl<TPage> UnsafeUnpin for ManagedApplication<TPage>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> Configure for T

Source§

fn configure(self, configure: impl FnOnce(&Self)) -> Self

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.