pub enum Request {
Show 51 variants
SetName(ClientName),
Speak,
SendLine(String),
SendLines(Vec<String>),
SpeakChar(char),
SpeakKey(KeyName),
Stop(MessageScope),
Cancel(MessageScope),
Pause(MessageScope),
Resume(MessageScope),
SetPriority(Priority),
SetDebug(bool),
SetOutputModule(ClientScope, String),
GetOutputModule,
ListOutputModules,
SetLanguage(ClientScope, String),
GetLanguage,
SetSsmlMode(bool),
SetPunctuationMode(ClientScope, PunctuationMode),
SetSpelling(ClientScope, bool),
SetCapitalLettersRecognitionMode(ClientScope, CapitalLettersRecognitionMode),
SetVoiceType(ClientScope, String),
GetVoiceType,
ListVoiceTypes,
SetSynthesisVoice(ClientScope, String),
ListSynthesisVoices,
SetRate(ClientScope, i8),
GetRate,
SetPitch(ClientScope, i8),
GetPitch,
SetVolume(ClientScope, i8),
GetVolume,
SetPauseContext(ClientScope, u32),
SetNotification(NotificationType, bool),
Begin,
End,
SetHistory(ClientScope, bool),
HistoryGetClients,
HistoryGetClientId,
HistoryGetClientMsgs(ClientScope, u32, u32),
HistoryGetLastMsgId,
HistoryGetMsg(u32),
HistoryCursorGet,
HistoryCursorSet(ClientScope, HistoryPosition),
HistoryCursorMove(CursorDirection),
HistorySpeak(u32),
HistorySort(SortDirection, SortKey),
HistorySetShortMsgLength(u32),
HistorySetMsgTypeOrdering(Vec<Ordering>),
HistorySearch(ClientScope, String),
Quit,
}
Expand description
Request for SSIP server.
Variants§
SetName(ClientName)
Speak
SendLine(String)
SendLines(Vec<String>)
SpeakChar(char)
SpeakKey(KeyName)
Stop(MessageScope)
Cancel(MessageScope)
Pause(MessageScope)
Resume(MessageScope)
SetPriority(Priority)
SetDebug(bool)
SetOutputModule(ClientScope, String)
GetOutputModule
ListOutputModules
SetLanguage(ClientScope, String)
GetLanguage
SetSsmlMode(bool)
SetPunctuationMode(ClientScope, PunctuationMode)
SetSpelling(ClientScope, bool)
SetCapitalLettersRecognitionMode(ClientScope, CapitalLettersRecognitionMode)
SetVoiceType(ClientScope, String)
GetVoiceType
ListVoiceTypes
SetSynthesisVoice(ClientScope, String)
ListSynthesisVoices
SetRate(ClientScope, i8)
GetRate
SetPitch(ClientScope, i8)
GetPitch
SetVolume(ClientScope, i8)
GetVolume
SetPauseContext(ClientScope, u32)
SetNotification(NotificationType, bool)
Begin
End
SetHistory(ClientScope, bool)
HistoryGetClients
HistoryGetClientId
HistoryGetClientMsgs(ClientScope, u32, u32)
HistoryGetLastMsgId
HistoryGetMsg(u32)
HistoryCursorGet
HistoryCursorSet(ClientScope, HistoryPosition)
HistoryCursorMove(CursorDirection)
HistorySpeak(u32)
HistorySort(SortDirection, SortKey)
HistorySetShortMsgLength(u32)
HistorySetMsgTypeOrdering(Vec<Ordering>)
HistorySearch(ClientScope, String)
Quit
Trait Implementations§
impl Eq for Request
impl StructuralPartialEq for Request
Auto Trait Implementations§
impl Freeze for Request
impl RefUnwindSafe for Request
impl Send for Request
impl Sync for Request
impl Unpin for Request
impl UnwindSafe for Request
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