#[non_exhaustive]pub enum StreamVolumeFormat {
Linear,
Cubic,
Db,
}
Expand description
Different representations of a stream volume. StreamVolume::convert_volume()
allows to convert between the different representations.
Formulas to convert from a linear to a cubic or dB volume are cbrt(val) and 20 * log10 (val).
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Linear
Linear scale factor, 1.0 = 100%
Cubic
Cubic volume scale
Db
Logarithmic volume scale (dB, amplitude not power)
Trait Implementations§
source§impl Clone for StreamVolumeFormat
impl Clone for StreamVolumeFormat
source§fn clone(&self) -> StreamVolumeFormat
fn clone(&self) -> StreamVolumeFormat
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 StreamVolumeFormat
impl Debug for StreamVolumeFormat
source§impl Hash for StreamVolumeFormat
impl Hash for StreamVolumeFormat
source§impl Ord for StreamVolumeFormat
impl Ord for StreamVolumeFormat
source§fn cmp(&self, other: &StreamVolumeFormat) -> Ordering
fn cmp(&self, other: &StreamVolumeFormat) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for StreamVolumeFormat
impl PartialEq for StreamVolumeFormat
source§fn eq(&self, other: &StreamVolumeFormat) -> bool
fn eq(&self, other: &StreamVolumeFormat) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for StreamVolumeFormat
impl PartialOrd for StreamVolumeFormat
source§fn partial_cmp(&self, other: &StreamVolumeFormat) -> Option<Ordering>
fn partial_cmp(&self, other: &StreamVolumeFormat) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for StreamVolumeFormat
impl Eq for StreamVolumeFormat
impl StructuralPartialEq for StreamVolumeFormat
Auto Trait Implementations§
impl Freeze for StreamVolumeFormat
impl RefUnwindSafe for StreamVolumeFormat
impl Send for StreamVolumeFormat
impl Sync for StreamVolumeFormat
impl Unpin for StreamVolumeFormat
impl UnwindSafe for StreamVolumeFormat
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> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more