pub enum PipelineInput {
Audio(AudioFrame),
Text(String),
Control(PipelineControl),
}Available on crate feature
audio only.Expand description
Messages that can be sent into a pipeline.
Variants§
Audio(AudioFrame)
Raw audio data.
Text(String)
Text input (bypasses STT).
Control(PipelineControl)
Control message.
Auto Trait Implementations§
impl !Freeze for PipelineInput
impl RefUnwindSafe for PipelineInput
impl Send for PipelineInput
impl Sync for PipelineInput
impl Unpin for PipelineInput
impl UnsafeUnpin for PipelineInput
impl UnwindSafe for PipelineInput
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more