pub struct MergeChannelEntry {
pub participant_id: String,
pub recording_id: Option<String>,
pub kind: Option<String>,
}Expand description
One source in a merge channel.
Fields§
§participant_id: StringThe participant to take audio from.
recording_id: Option<String>The source recording. Resolved from the participant when omitted.
kind: Option<String>Either participant or track.
Trait Implementations§
Source§impl Clone for MergeChannelEntry
impl Clone for MergeChannelEntry
Source§fn clone(&self) -> MergeChannelEntry
fn clone(&self) -> MergeChannelEntry
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 MergeChannelEntry
impl Debug for MergeChannelEntry
Auto Trait Implementations§
impl Freeze for MergeChannelEntry
impl RefUnwindSafe for MergeChannelEntry
impl Send for MergeChannelEntry
impl Sync for MergeChannelEntry
impl Unpin for MergeChannelEntry
impl UnsafeUnpin for MergeChannelEntry
impl UnwindSafe for MergeChannelEntry
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