pub struct UtteranceData {
pub count: Option<i64>,
pub distinct_users: Option<i64>,
pub first_uttered_date: Option<f64>,
pub last_uttered_date: Option<f64>,
pub utterance_string: Option<String>,
}Expand description
Provides information about a single utterance that was made to your bot.
Fields§
§count: Option<i64>The number of times that the utterance was processed.
distinct_users: Option<i64>The total number of individuals that used the utterance.
first_uttered_date: Option<f64>The date that the utterance was first recorded.
last_uttered_date: Option<f64>The date that the utterance was last recorded.
utterance_string: Option<String>The text that was entered by the user or the text representation of an audio clip.
Trait Implementations§
Source§impl Clone for UtteranceData
impl Clone for UtteranceData
Source§fn clone(&self) -> UtteranceData
fn clone(&self) -> UtteranceData
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 UtteranceData
impl Debug for UtteranceData
Source§impl Default for UtteranceData
impl Default for UtteranceData
Source§fn default() -> UtteranceData
fn default() -> UtteranceData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UtteranceData
impl<'de> Deserialize<'de> for UtteranceData
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 UtteranceData
impl PartialEq for UtteranceData
impl StructuralPartialEq for UtteranceData
Auto Trait Implementations§
impl Freeze for UtteranceData
impl RefUnwindSafe for UtteranceData
impl Send for UtteranceData
impl Sync for UtteranceData
impl Unpin for UtteranceData
impl UnwindSafe for UtteranceData
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