Enum web_audio_api::buffer::ChannelCountMode [−][src]
pub enum ChannelCountMode {
Max,
ClampedMax,
Explicit,
}
Expand description
How channels must be matched between the node’s inputs and outputs.
Variants
Max
computedNumberOfChannels
is the maximum of the number of channels of all connections to an
input. In this mode channelCount is ignored.
ClampedMax
computedNumberOfChannels
is determined as for “max” and then clamped to a maximum value of
the given channelCount.
Explicit
computedNumberOfChannels
is the exact value as specified by the channelCount.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for ChannelCountMode
impl Send for ChannelCountMode
impl Sync for ChannelCountMode
impl Unpin for ChannelCountMode
impl UnwindSafe for ChannelCountMode
Blanket Implementations
Mutably borrows from an owned value. Read more