OptionsPageComponent

Trait OptionsPageComponent 

Source
pub trait OptionsPageComponent<'a>: Component<Init<'a> = OptionsPageInit<'a, Self::App>, Message: From<OptionsPageMessage<Self::App>>> + 'static {
    type App: PluginApp;
}
Available on crate feature winio only.

Required Associated Types§

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<'a, T, A: PluginApp> OptionsPageComponent<'a> for T
where T: Component<Init<'a> = OptionsPageInit<'a, A>, Message: From<OptionsPageMessage<A>>> + 'static,

Source§

type App = A