pub enum ServerMessages {
Show 17 variants
ConversationUpdate,
EndOfCallReport,
FunctionCall,
Hang,
LanguageChanged,
LanguageChangeDetected,
ModelOutput,
PhoneCallControl,
SpeechUpdate,
StatusUpdate,
Transcript,
TranscriptLeftSquareBracketTranscriptTypeEqualDoubleQuoteFinalDoubleQuoteRightSquareBracket,
ToolCalls,
TransferDestinationRequest,
TransferUpdate,
UserInterrupted,
VoiceInput,
}Expand description
These are the messages that will be sent to your Server URL. Default is conversation-update,end-of-call-report,function-call,hang,speech-update,status-update,tool-calls,transfer-destination-request,user-interrupted. You can check the shape of the messages in ServerMessage schema.
Variants§
ConversationUpdate
EndOfCallReport
FunctionCall
Hang
LanguageChanged
LanguageChangeDetected
ModelOutput
PhoneCallControl
SpeechUpdate
StatusUpdate
Transcript
TranscriptLeftSquareBracketTranscriptTypeEqualDoubleQuoteFinalDoubleQuoteRightSquareBracket
ToolCalls
TransferDestinationRequest
TransferUpdate
UserInterrupted
VoiceInput
Trait Implementations§
Source§impl Clone for ServerMessages
impl Clone for ServerMessages
Source§fn clone(&self) -> ServerMessages
fn clone(&self) -> ServerMessages
Returns a copy of the value. Read more
1.0.0 · 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 ServerMessages
impl Debug for ServerMessages
Source§impl Default for ServerMessages
impl Default for ServerMessages
Source§fn default() -> ServerMessages
fn default() -> ServerMessages
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ServerMessages
impl<'de> Deserialize<'de> for ServerMessages
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 Hash for ServerMessages
impl Hash for ServerMessages
Source§impl Ord for ServerMessages
impl Ord for ServerMessages
Source§fn cmp(&self, other: &ServerMessages) -> Ordering
fn cmp(&self, other: &ServerMessages) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ServerMessages
impl PartialEq for ServerMessages
Source§impl PartialOrd for ServerMessages
impl PartialOrd for ServerMessages
Source§impl Serialize for ServerMessages
impl Serialize for ServerMessages
impl Copy for ServerMessages
impl Eq for ServerMessages
impl StructuralPartialEq for ServerMessages
Auto Trait Implementations§
impl Freeze for ServerMessages
impl RefUnwindSafe for ServerMessages
impl Send for ServerMessages
impl Sync for ServerMessages
impl Unpin for ServerMessages
impl UnwindSafe for ServerMessages
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.