Enum SoundIoChannelLayoutId

Source
#[repr(u32)]
pub enum SoundIoChannelLayoutId {
Show 26 variants SoundIoChannelLayoutIdMono = 0, SoundIoChannelLayoutIdStereo = 1, SoundIoChannelLayoutId2Point1 = 2, SoundIoChannelLayoutId3Point0 = 3, SoundIoChannelLayoutId3Point0Back = 4, SoundIoChannelLayoutId3Point1 = 5, SoundIoChannelLayoutId4Point0 = 6, SoundIoChannelLayoutIdQuad = 7, SoundIoChannelLayoutIdQuadSide = 8, SoundIoChannelLayoutId4Point1 = 9, SoundIoChannelLayoutId5Point0Back = 10, SoundIoChannelLayoutId5Point0Side = 11, SoundIoChannelLayoutId5Point1 = 12, SoundIoChannelLayoutId5Point1Back = 13, SoundIoChannelLayoutId6Point0Side = 14, SoundIoChannelLayoutId6Point0Front = 15, SoundIoChannelLayoutIdHexagonal = 16, SoundIoChannelLayoutId6Point1 = 17, SoundIoChannelLayoutId6Point1Back = 18, SoundIoChannelLayoutId6Point1Front = 19, SoundIoChannelLayoutId7Point0 = 20, SoundIoChannelLayoutId7Point0Front = 21, SoundIoChannelLayoutId7Point1 = 22, SoundIoChannelLayoutId7Point1Wide = 23, SoundIoChannelLayoutId7Point1WideBack = 24, SoundIoChannelLayoutIdOctagonal = 25,
}

Variants§

§

SoundIoChannelLayoutIdMono = 0

§

SoundIoChannelLayoutIdStereo = 1

§

SoundIoChannelLayoutId2Point1 = 2

§

SoundIoChannelLayoutId3Point0 = 3

§

SoundIoChannelLayoutId3Point0Back = 4

§

SoundIoChannelLayoutId3Point1 = 5

§

SoundIoChannelLayoutId4Point0 = 6

§

SoundIoChannelLayoutIdQuad = 7

§

SoundIoChannelLayoutIdQuadSide = 8

§

SoundIoChannelLayoutId4Point1 = 9

§

SoundIoChannelLayoutId5Point0Back = 10

§

SoundIoChannelLayoutId5Point0Side = 11

§

SoundIoChannelLayoutId5Point1 = 12

§

SoundIoChannelLayoutId5Point1Back = 13

§

SoundIoChannelLayoutId6Point0Side = 14

§

SoundIoChannelLayoutId6Point0Front = 15

§

SoundIoChannelLayoutIdHexagonal = 16

§

SoundIoChannelLayoutId6Point1 = 17

§

SoundIoChannelLayoutId6Point1Back = 18

§

SoundIoChannelLayoutId6Point1Front = 19

§

SoundIoChannelLayoutId7Point0 = 20

§

SoundIoChannelLayoutId7Point0Front = 21

§

SoundIoChannelLayoutId7Point1 = 22

§

SoundIoChannelLayoutId7Point1Wide = 23

§

SoundIoChannelLayoutId7Point1WideBack = 24

§

SoundIoChannelLayoutIdOctagonal = 25

Trait Implementations§

Source§

impl Clone for SoundIoChannelLayoutId

Source§

fn clone(&self) -> SoundIoChannelLayoutId

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for SoundIoChannelLayoutId

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.