pub trait RobonixServiceSpeechTtsStream:
Send
+ Sync
+ 'static {
type SynthesizeStreamStream: Stream<Item = Result<SynthesizeAudioChunk, Status>> + Send + 'static;
// Required method
fn synthesize_stream<'life0, 'async_trait>(
&'life0 self,
request: Request<SynthesizeStreamRequest>,
) -> Pin<Box<dyn Future<Output = Result<Response<Self::SynthesizeStreamStream>, Status>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}Expand description
Generated trait containing gRPC methods that should be implemented for use with RobonixServiceSpeechTtsStreamServer.
Required Associated Types§
Sourcetype SynthesizeStreamStream: Stream<Item = Result<SynthesizeAudioChunk, Status>> + Send + 'static
type SynthesizeStreamStream: Stream<Item = Result<SynthesizeAudioChunk, Status>> + Send + 'static
Server streaming response type for the SynthesizeStream method.