pub enum PannerMode {
Stereo,
Surround,
Ambisonic,
}Expand description
Panning mode determining the algorithm and output format.
Variants§
Stereo
Stereo constant-power panning.
Surround
VBAP-based surround panning.
Ambisonic
Spherical harmonic ambisonic encoding.
Trait Implementations§
Source§impl Clone for PannerMode
impl Clone for PannerMode
Source§fn clone(&self) -> PannerMode
fn clone(&self) -> PannerMode
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 PannerMode
impl Debug for PannerMode
Source§impl Default for PannerMode
impl Default for PannerMode
Source§fn default() -> PannerMode
fn default() -> PannerMode
Returns the “default value” for a type. Read more
Source§impl PartialEq for PannerMode
impl PartialEq for PannerMode
impl Copy for PannerMode
impl Eq for PannerMode
impl StructuralPartialEq for PannerMode
Auto Trait Implementations§
impl Freeze for PannerMode
impl RefUnwindSafe for PannerMode
impl Send for PannerMode
impl Sync for PannerMode
impl Unpin for PannerMode
impl UnwindSafe for PannerMode
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