#[repr(C)]pub struct _tagEOS_RTC_SetSettingOptions {
pub ApiVersion: i32,
pub SettingName: *const c_char,
pub SettingValue: *const c_char,
}Expand description
This struct is used to call EOS_RTC_SetSetting
Available values of SettingName:
- DisableEchoCancelation: Disables the use of echo cancellation for the audio channel. Default “False”.
- DisableNoiseSupression: Disables the use of noise suppression for the audio channel. Default “False”.
- DisableAutoGainControl: Disables the use of auto gain control for the audio channel. Default “False”.
- DisableDtx: Allows to disable the use of DTX. Default “False”.
Fields§
§ApiVersion: i32API Version: Set this to EOS_RTC_SETSETTING_API_LATEST.
SettingName: *const c_charSetting that should be set.
SettingValue: *const c_charValue to set the setting to.
Trait Implementations§
Source§impl Clone for _tagEOS_RTC_SetSettingOptions
impl Clone for _tagEOS_RTC_SetSettingOptions
Source§fn clone(&self) -> _tagEOS_RTC_SetSettingOptions
fn clone(&self) -> _tagEOS_RTC_SetSettingOptions
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 moreimpl Copy for _tagEOS_RTC_SetSettingOptions
Auto Trait Implementations§
impl Freeze for _tagEOS_RTC_SetSettingOptions
impl RefUnwindSafe for _tagEOS_RTC_SetSettingOptions
impl !Send for _tagEOS_RTC_SetSettingOptions
impl !Sync for _tagEOS_RTC_SetSettingOptions
impl Unpin for _tagEOS_RTC_SetSettingOptions
impl UnsafeUnpin for _tagEOS_RTC_SetSettingOptions
impl UnwindSafe for _tagEOS_RTC_SetSettingOptions
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