#[non_exhaustive]pub enum RtcAudioSource {
Native(NativeAudioSource),
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Native(NativeAudioSource)
Trait Implementations§
Source§impl Clone for RtcAudioSource
impl Clone for RtcAudioSource
Source§fn clone(&self) -> RtcAudioSource
fn clone(&self) -> RtcAudioSource
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 moreAuto Trait Implementations§
impl Freeze for RtcAudioSource
impl RefUnwindSafe for RtcAudioSource
impl Send for RtcAudioSource
impl Sync for RtcAudioSource
impl Unpin for RtcAudioSource
impl UnsafeUnpin for RtcAudioSource
impl UnwindSafe for RtcAudioSource
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