pub enum RecordingChannels {
Mono,
Dual,
}Expand description
The number of channels in the final recording. Can be: mono or dual. The default is mono. mono records both legs of the call in a single channel of the recording file. dual records each leg to a separate channel of the recording file. The first channel of a dual-channel recording contains the parent call and the second channel contains the child call. @default ‘mono’
Variants§
Trait Implementations§
Source§impl Clone for RecordingChannels
impl Clone for RecordingChannels
Source§fn clone(&self) -> RecordingChannels
fn clone(&self) -> RecordingChannels
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 RecordingChannels
impl Debug for RecordingChannels
Source§impl Default for RecordingChannels
impl Default for RecordingChannels
Source§fn default() -> RecordingChannels
fn default() -> RecordingChannels
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RecordingChannels
impl<'de> Deserialize<'de> for RecordingChannels
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for RecordingChannels
impl Hash for RecordingChannels
Source§impl Ord for RecordingChannels
impl Ord for RecordingChannels
Source§fn cmp(&self, other: &RecordingChannels) -> Ordering
fn cmp(&self, other: &RecordingChannels) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for RecordingChannels
impl PartialEq for RecordingChannels
Source§impl PartialOrd for RecordingChannels
impl PartialOrd for RecordingChannels
Source§impl Serialize for RecordingChannels
impl Serialize for RecordingChannels
impl Copy for RecordingChannels
impl Eq for RecordingChannels
impl StructuralPartialEq for RecordingChannels
Auto Trait Implementations§
impl Freeze for RecordingChannels
impl RefUnwindSafe for RecordingChannels
impl Send for RecordingChannels
impl Sync for RecordingChannels
impl Unpin for RecordingChannels
impl UnwindSafe for RecordingChannels
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