#[non_exhaustive]pub struct RealtimeServerVad {
pub type_: RealtimeServerVadType,
pub threshold: Option<f64>,
pub prefix_padding_ms: Option<u32>,
pub silence_duration_ms: Option<u32>,
pub idle_timeout_ms: Option<u32>,
pub create_response: Option<bool>,
pub interrupt_response: Option<bool>,
pub rest: Rest,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.type_: RealtimeServerVadType§threshold: Option<f64>§prefix_padding_ms: Option<u32>§silence_duration_ms: Option<u32>§idle_timeout_ms: Option<u32>§create_response: Option<bool>§interrupt_response: Option<bool>§rest: RestImplementations§
Trait Implementations§
Source§impl Clone for RealtimeServerVad
impl Clone for RealtimeServerVad
Source§fn clone(&self) -> RealtimeServerVad
fn clone(&self) -> RealtimeServerVad
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RealtimeServerVad
impl Debug for RealtimeServerVad
Source§impl<'de> Deserialize<'de> for RealtimeServerVad
impl<'de> Deserialize<'de> for RealtimeServerVad
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 RealtimeServerVad
impl PartialEq for RealtimeServerVad
Source§impl Serialize for RealtimeServerVad
impl Serialize for RealtimeServerVad
impl StructuralPartialEq for RealtimeServerVad
Auto Trait Implementations§
impl Freeze for RealtimeServerVad
impl RefUnwindSafe for RealtimeServerVad
impl Send for RealtimeServerVad
impl Sync for RealtimeServerVad
impl Unpin for RealtimeServerVad
impl UnsafeUnpin for RealtimeServerVad
impl UnwindSafe for RealtimeServerVad
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