Skip to main content

ActiveTheme

Trait ActiveTheme 

Source
pub trait ActiveTheme {
    // Required method
    fn theme(&self) -> &Arc<Theme> ;
}
Expand description

Implementing this trait allows accessing the active theme.

Required Methods§

Source

fn theme(&self) -> &Arc<Theme>

Returns the active theme.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl ActiveTheme for App

Source§

fn theme(&self) -> &Arc<Theme>

Implementors§