pub struct AudioTrackConstraints { /* private fields */ }
Implementations§
Source§impl AudioTrackConstraints
impl AudioTrackConstraints
pub fn auto_gain_control<OptionInnerType>(
self,
value: impl Into<Option<OptionInnerType>>,
) -> Selfwhere
OptionInnerType: Into<ConstraintBool>,
pub fn channel_count<OptionInnerType>(
self,
value: impl Into<Option<OptionInnerType>>,
) -> Selfwhere
OptionInnerType: Into<ConstraintULong>,
pub fn echo_cancellation<OptionInnerType>(
self,
value: impl Into<Option<OptionInnerType>>,
) -> Selfwhere
OptionInnerType: Into<ConstraintBool>,
pub fn noise_suppression<OptionInnerType>(
self,
value: impl Into<Option<OptionInnerType>>,
) -> Selfwhere
OptionInnerType: Into<ConstraintBool>,
Source§impl AudioTrackConstraints
impl AudioTrackConstraints
pub fn new() -> Self
pub fn device_id<M>(self, value: impl IntoDeviceIds<M>) -> Self
Trait Implementations§
Source§impl Clone for AudioTrackConstraints
impl Clone for AudioTrackConstraints
Source§fn clone(&self) -> AudioTrackConstraints
fn clone(&self) -> AudioTrackConstraints
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 AudioTrackConstraints
impl Debug for AudioTrackConstraints
Source§impl Default for AudioTrackConstraints
impl Default for AudioTrackConstraints
Source§fn default() -> AudioTrackConstraints
fn default() -> AudioTrackConstraints
Returns the “default value” for a type. Read more
Source§impl From<AudioTrackConstraints> for AudioConstraints
impl From<AudioTrackConstraints> for AudioConstraints
Source§fn from(value: AudioTrackConstraints) -> Self
fn from(value: AudioTrackConstraints) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AudioTrackConstraints
impl RefUnwindSafe for AudioTrackConstraints
impl Send for AudioTrackConstraints
impl Sync for AudioTrackConstraints
impl Unpin for AudioTrackConstraints
impl UnwindSafe for AudioTrackConstraints
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more