pub struct SpeechRecognitionResultPending {
pub partial_text: String,
}
Expand description
The speech recognition is ongoing
Fields§
§partial_text: String
Partially recognized text
Trait Implementations§
Source§impl Clone for SpeechRecognitionResultPending
impl Clone for SpeechRecognitionResultPending
Source§fn clone(&self) -> SpeechRecognitionResultPending
fn clone(&self) -> SpeechRecognitionResultPending
Returns a duplicate 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 Default for SpeechRecognitionResultPending
impl Default for SpeechRecognitionResultPending
Source§fn default() -> SpeechRecognitionResultPending
fn default() -> SpeechRecognitionResultPending
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SpeechRecognitionResultPending
impl<'de> Deserialize<'de> for SpeechRecognitionResultPending
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 SpeechRecognitionResultPending
impl PartialEq for SpeechRecognitionResultPending
Source§fn eq(&self, other: &SpeechRecognitionResultPending) -> bool
fn eq(&self, other: &SpeechRecognitionResultPending) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for SpeechRecognitionResultPending
Auto Trait Implementations§
impl Freeze for SpeechRecognitionResultPending
impl RefUnwindSafe for SpeechRecognitionResultPending
impl Send for SpeechRecognitionResultPending
impl Sync for SpeechRecognitionResultPending
impl Unpin for SpeechRecognitionResultPending
impl UnwindSafe for SpeechRecognitionResultPending
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