pub trait SpeechTranscriber:
Send
+ Sync
+ 'static {
// Required methods
fn id(&self) -> SpeechTranscriberId;
fn capabilities(&self) -> SpeechCapabilities;
fn metadata(&self) -> SpeechProviderMetadata;
fn list_models<'life0, 'life1, 'async_trait>(
&'life0 self,
ctx: SpeechProviderContext<'life1>,
) -> Pin<Box<dyn Future<Output = Result<Vec<SpeechModelDescriptor>>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
fn transcribe<'life0, 'life1, 'async_trait>(
&'life0 self,
ctx: SpeechProviderContext<'life1>,
request: SpeechTranscriptionRequest,
) -> Pin<Box<dyn Future<Output = Result<SpeechTranscriptionResult>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
}Required Methods§
fn id(&self) -> SpeechTranscriberId
fn capabilities(&self) -> SpeechCapabilities
fn metadata(&self) -> SpeechProviderMetadata
fn list_models<'life0, 'life1, 'async_trait>(
&'life0 self,
ctx: SpeechProviderContext<'life1>,
) -> Pin<Box<dyn Future<Output = Result<Vec<SpeechModelDescriptor>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn transcribe<'life0, 'life1, 'async_trait>(
&'life0 self,
ctx: SpeechProviderContext<'life1>,
request: SpeechTranscriptionRequest,
) -> Pin<Box<dyn Future<Output = Result<SpeechTranscriptionResult>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".