Enum web_sys::AudioSampleFormat
source · pub enum AudioSampleFormat {
U8 = 0,
S16 = 1,
S32 = 2,
F32 = 3,
U8Planar = 4,
S16Planar = 5,
S32Planar = 6,
F32Planar = 7,
// some variants omitted
}
Expand description
The AudioSampleFormat
enum.
This API requires the following crate features to be activated: AudioSampleFormat
This API is unstable and requires --cfg=web_sys_unstable_apis
to be activated, as
described in the wasm-bindgen
guide
Variants§
Implementations§
source§impl AudioSampleFormat
impl AudioSampleFormat
pub fn from_js_value(obj: &JsValue) -> Option<AudioSampleFormat>
Trait Implementations§
source§impl Clone for AudioSampleFormat
impl Clone for AudioSampleFormat
source§fn clone(&self) -> AudioSampleFormat
fn clone(&self) -> AudioSampleFormat
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 AudioSampleFormat
impl Debug for AudioSampleFormat
source§impl From<AudioSampleFormat> for JsValue
impl From<AudioSampleFormat> for JsValue
source§fn from(obj: AudioSampleFormat) -> JsValue
fn from(obj: AudioSampleFormat) -> JsValue
Converts to this type from the input type.
source§impl FromWasmAbi for AudioSampleFormat
impl FromWasmAbi for AudioSampleFormat
source§impl IntoWasmAbi for AudioSampleFormat
impl IntoWasmAbi for AudioSampleFormat
source§impl PartialEq for AudioSampleFormat
impl PartialEq for AudioSampleFormat
source§fn eq(&self, other: &AudioSampleFormat) -> bool
fn eq(&self, other: &AudioSampleFormat) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for AudioSampleFormat
impl Eq for AudioSampleFormat
impl StructuralEq for AudioSampleFormat
impl StructuralPartialEq for AudioSampleFormat
Auto Trait Implementations§
impl RefUnwindSafe for AudioSampleFormat
impl Send for AudioSampleFormat
impl Sync for AudioSampleFormat
impl Unpin for AudioSampleFormat
impl UnwindSafe for AudioSampleFormat
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
source§impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
§type Abi = <T as IntoWasmAbi>::Abi
type Abi = <T as IntoWasmAbi>::Abi
Same as
IntoWasmAbi::Abi
source§fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
Same as
IntoWasmAbi::into_abi
, except that it may throw and never
return in the case of Err
.