Trait UtteranceEventStream

Source
pub trait UtteranceEventStream<E>: Stream<Item = Result<UtteranceEvent, E>> + Send { }
Expand description

A stream of UtteranceEvents returned by the synthesiser.

May be an Err if an error was encountered during synthesis (i.e. a socket disconnect).

Implementors§

Source§

impl<E, T: Stream<Item = Result<UtteranceEvent, E>> + Send> UtteranceEventStream<E> for T