Trait UiService

Source
pub trait UiService {
    // Required methods
    fn capabilities(&self) -> UiCap;
    fn version(&self) -> (u32, u32, u32) ;

    // Provided method
    fn version_string(&self) -> String  { ... }
}
Expand description

Common trait for all UI services.

Required Methods§

Source

fn capabilities(&self) -> UiCap

Returns the service capabilities.

Source

fn version(&self) -> (u32, u32, u32)

Returns the service inner version numbers (major, minor, patch).

Provided Methods§

Source

fn version_string(&self) -> String

Available on crate feature alloc only.

Returns the service version string.

Implementors§

Source§

impl UiService for CrosstermService

Available on crate feature dep_crossterm only.
Source§

impl<T: MiniquadEventHandlerExt + 'static> UiService for MiniquadService<T>

Available on crate feature dep_miniquad only.