#[non_exhaustive]pub struct ActiveSpeakerObserverOptions {
pub interval: u16,
pub app_data: AppData,
}
Expand description
ActiveSpeakerObserver
options
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.interval: u16
Interval in ms for checking audio volumes. Default 300.
app_data: AppData
Custom application data.
Trait Implementations§
Source§impl Clone for ActiveSpeakerObserverOptions
impl Clone for ActiveSpeakerObserverOptions
Source§fn clone(&self) -> ActiveSpeakerObserverOptions
fn clone(&self) -> ActiveSpeakerObserverOptions
Returns a copy 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 ActiveSpeakerObserverOptions
impl Debug for ActiveSpeakerObserverOptions
Auto Trait Implementations§
impl Freeze for ActiveSpeakerObserverOptions
impl !RefUnwindSafe for ActiveSpeakerObserverOptions
impl Send for ActiveSpeakerObserverOptions
impl Sync for ActiveSpeakerObserverOptions
impl Unpin for ActiveSpeakerObserverOptions
impl !UnwindSafe for ActiveSpeakerObserverOptions
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