pub struct VoiceOnlyIntent {
pub transcript: String,
pub confidence: f32,
pub timestamp_ms: u64,
}Expand description
A voice-only intent (no touch context).
Fields§
§transcript: StringThe voice transcript.
confidence: f32Confidence of the voice recognition.
timestamp_ms: u64Timestamp.
Trait Implementations§
Source§impl Clone for VoiceOnlyIntent
impl Clone for VoiceOnlyIntent
Source§fn clone(&self) -> VoiceOnlyIntent
fn clone(&self) -> VoiceOnlyIntent
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 Debug for VoiceOnlyIntent
impl Debug for VoiceOnlyIntent
Source§impl<'de> Deserialize<'de> for VoiceOnlyIntent
impl<'de> Deserialize<'de> for VoiceOnlyIntent
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 VoiceOnlyIntent
impl PartialEq for VoiceOnlyIntent
Source§impl Serialize for VoiceOnlyIntent
impl Serialize for VoiceOnlyIntent
impl StructuralPartialEq for VoiceOnlyIntent
Auto Trait Implementations§
impl Freeze for VoiceOnlyIntent
impl RefUnwindSafe for VoiceOnlyIntent
impl Send for VoiceOnlyIntent
impl Sync for VoiceOnlyIntent
impl Unpin for VoiceOnlyIntent
impl UnwindSafe for VoiceOnlyIntent
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