Trait ObsContextEncoders
Source pub trait ObsContextEncoders {
// Required methods
fn get_best_video_encoder<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<ObsVideoEncoderType, ObsError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn get_best_audio_encoder<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<ObsAudioEncoderType, ObsError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn get_available_audio_encoders<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<Vec<ObsAudioEncoderType>, ObsError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn get_available_video_encoders<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<Vec<ObsVideoEncoderType>, ObsError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}