pub enum RecordingChannelsTrue {
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 RecordingChannelsTrue
impl Clone for RecordingChannelsTrue
Source§fn clone(&self) -> RecordingChannelsTrue
fn clone(&self) -> RecordingChannelsTrue
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 moreSource§impl Debug for RecordingChannelsTrue
impl Debug for RecordingChannelsTrue
Source§impl Default for RecordingChannelsTrue
impl Default for RecordingChannelsTrue
Source§fn default() -> RecordingChannelsTrue
fn default() -> RecordingChannelsTrue
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RecordingChannelsTrue
impl<'de> Deserialize<'de> for RecordingChannelsTrue
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 RecordingChannelsTrue
impl Hash for RecordingChannelsTrue
Source§impl Ord for RecordingChannelsTrue
impl Ord for RecordingChannelsTrue
Source§fn cmp(&self, other: &RecordingChannelsTrue) -> Ordering
fn cmp(&self, other: &RecordingChannelsTrue) -> 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 RecordingChannelsTrue
impl PartialEq for RecordingChannelsTrue
Source§impl PartialOrd for RecordingChannelsTrue
impl PartialOrd for RecordingChannelsTrue
Source§impl Serialize for RecordingChannelsTrue
impl Serialize for RecordingChannelsTrue
impl Copy for RecordingChannelsTrue
impl Eq for RecordingChannelsTrue
impl StructuralPartialEq for RecordingChannelsTrue
Auto Trait Implementations§
impl Freeze for RecordingChannelsTrue
impl RefUnwindSafe for RecordingChannelsTrue
impl Send for RecordingChannelsTrue
impl Sync for RecordingChannelsTrue
impl Unpin for RecordingChannelsTrue
impl UnwindSafe for RecordingChannelsTrue
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