pub struct GeminiAutomaticActivityDetection {
pub disabled: Option<bool>,
pub start_of_speech_sensitivity: Option<GeminiStartSensitivity>,
pub prefix_padding_ms: Option<i32>,
pub end_of_speech_sensitivity: Option<GeminiEndSensitivity>,
pub silence_duration_ms: Option<i32>,
}Fields§
§disabled: Option<bool>§start_of_speech_sensitivity: Option<GeminiStartSensitivity>§prefix_padding_ms: Option<i32>§end_of_speech_sensitivity: Option<GeminiEndSensitivity>§silence_duration_ms: Option<i32>Trait Implementations§
Source§impl Clone for GeminiAutomaticActivityDetection
impl Clone for GeminiAutomaticActivityDetection
Source§fn clone(&self) -> GeminiAutomaticActivityDetection
fn clone(&self) -> GeminiAutomaticActivityDetection
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 GeminiAutomaticActivityDetection
impl Default for GeminiAutomaticActivityDetection
Source§fn default() -> GeminiAutomaticActivityDetection
fn default() -> GeminiAutomaticActivityDetection
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GeminiAutomaticActivityDetection
impl<'de> Deserialize<'de> for GeminiAutomaticActivityDetection
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 GeminiAutomaticActivityDetection
impl PartialEq for GeminiAutomaticActivityDetection
Source§fn eq(&self, other: &GeminiAutomaticActivityDetection) -> bool
fn eq(&self, other: &GeminiAutomaticActivityDetection) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GeminiAutomaticActivityDetection
Auto Trait Implementations§
impl Freeze for GeminiAutomaticActivityDetection
impl RefUnwindSafe for GeminiAutomaticActivityDetection
impl Send for GeminiAutomaticActivityDetection
impl Sync for GeminiAutomaticActivityDetection
impl Unpin for GeminiAutomaticActivityDetection
impl UnsafeUnpin for GeminiAutomaticActivityDetection
impl UnwindSafe for GeminiAutomaticActivityDetection
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