Enum cxx_juce::juce_audio_devices::ChannelCount
source · pub enum ChannelCount {
Default,
Custom(i32),
}Expand description
The number of channels to use.
Variants§
Default
Use the default number of channels for the device.
Custom(i32)
Use a custom number of channels.
Trait Implementations§
source§impl Clone for ChannelCount
impl Clone for ChannelCount
source§fn clone(&self) -> ChannelCount
fn clone(&self) -> ChannelCount
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 ChannelCount
impl Debug for ChannelCount
source§impl PartialEq<ChannelCount> for ChannelCount
impl PartialEq<ChannelCount> for ChannelCount
source§fn eq(&self, other: &ChannelCount) -> bool
fn eq(&self, other: &ChannelCount) -> bool
This method tests for
self and other values to be equal, and is used
by ==.