logo

Enum primitives::prelude::AudioChannel[][src]

pub enum AudioChannel {
    Default,
    Effects,
    Interface,
    Music,
    Custom {
        value: u32,
    },
}
Expand description

Can be used to separate audio space to allow different transforms to apply to different groups of playing sounds.

Can be extended with Custom by using concrete project values.

Variants

Default

Effects

Interface

Music

Custom

Fields

value: u32

Allows AudioChannel to be extended (e.g. for using project specific enumerated audio channels or entity specific channels).

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.