Trait MiscDisplayTrait
Source pub trait MiscDisplayTrait {
// Required methods
fn update_color_space<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<(), ObsError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn is_enabled<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<bool, ObsError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn set_enabled<'life0, 'async_trait>(
&'life0 self,
enabled: bool,
) -> Pin<Box<dyn Future<Output = Result<(), ObsError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn set_background_color<'life0, 'async_trait>(
&'life0 self,
r: u8,
g: u8,
b: u8,
) -> Pin<Box<dyn Future<Output = Result<(), ObsError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}