#[non_exhaustive]pub enum SpeechStreamEvent {
Event(SpeechEvent),
Raw(Value),
}Expand description
Speech SSE payload observed by compatible backends. The OpenAI snapshot
confirms SSE transport but does not name its events; type, delta, and
audio are session-derived aliases and every other field remains opaque.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Event(SpeechEvent)
Raw(Value)
Trait Implementations§
Source§impl Clone for SpeechStreamEvent
impl Clone for SpeechStreamEvent
Source§fn clone(&self) -> SpeechStreamEvent
fn clone(&self) -> SpeechStreamEvent
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SpeechStreamEvent
impl Debug for SpeechStreamEvent
Source§impl<'de> Deserialize<'de> for SpeechStreamEvent
impl<'de> Deserialize<'de> for SpeechStreamEvent
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for SpeechStreamEvent
impl PartialEq for SpeechStreamEvent
Source§impl Serialize for SpeechStreamEvent
impl Serialize for SpeechStreamEvent
impl StructuralPartialEq for SpeechStreamEvent
Auto Trait Implementations§
impl Freeze for SpeechStreamEvent
impl RefUnwindSafe for SpeechStreamEvent
impl Send for SpeechStreamEvent
impl Sync for SpeechStreamEvent
impl Unpin for SpeechStreamEvent
impl UnsafeUnpin for SpeechStreamEvent
impl UnwindSafe for SpeechStreamEvent
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