pub struct AutomaticActivityDetection {
pub disabled: Option<bool>,
pub start_of_speech_sensitivity: Option<StartSensitivity>,
pub prefix_padding_ms: Option<i32>,
pub end_of_speech_sensitivity: Option<EndSensitivity>,
pub silence_duration_ms: Option<i32>,
}
Fields§
§disabled: Option<bool>
§start_of_speech_sensitivity: Option<StartSensitivity>
§prefix_padding_ms: Option<i32>
§end_of_speech_sensitivity: Option<EndSensitivity>
§silence_duration_ms: Option<i32>
Trait Implementations§
Source§impl Clone for AutomaticActivityDetection
impl Clone for AutomaticActivityDetection
Source§fn clone(&self) -> AutomaticActivityDetection
fn clone(&self) -> AutomaticActivityDetection
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 AutomaticActivityDetection
impl Debug for AutomaticActivityDetection
Source§impl Default for AutomaticActivityDetection
impl Default for AutomaticActivityDetection
Source§fn default() -> AutomaticActivityDetection
fn default() -> AutomaticActivityDetection
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AutomaticActivityDetection
impl<'de> Deserialize<'de> for AutomaticActivityDetection
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
Auto Trait Implementations§
impl Freeze for AutomaticActivityDetection
impl RefUnwindSafe for AutomaticActivityDetection
impl Send for AutomaticActivityDetection
impl Sync for AutomaticActivityDetection
impl Unpin for AutomaticActivityDetection
impl UnwindSafe for AutomaticActivityDetection
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