Struct libpulse_binding::volume::VolumeDB [−][src]
Software volume expressed in decibels (dBs).
Implementations
impl VolumeDB[src]
pub const MINUS_INFINITY: Self[src]
Minus Infinity.
This floor value is used / can be used, when using converting between integer software volume and decibel (dB, floating point) software volume.
Trait Implementations
impl Clone for VolumeDB[src]
impl Copy for VolumeDB[src]
impl Debug for VolumeDB[src]
impl Default for VolumeDB[src]
impl From<Volume> for VolumeDB[src]
Converts a volume to a decibel value (amplitude, not power).
This is only valid for software volumes!
impl From<VolumeDB> for Volume[src]
Converts a decibel value to a volume (amplitude, not power).
This is only valid for software volumes!
impl From<VolumeDB> for VolumeLinear[src]
Converts a decibel value (amplitude, not power) to a linear factor.
This is only valid for software volumes!
impl From<VolumeLinear> for VolumeDB[src]
Converts a linear factor to a decibel value (amplitude, not power).
0.0 and less is muted while 1.0 is Volume::NORMAL.
This is only valid for software volumes!
fn from(v: VolumeLinear) -> Self[src]
impl PartialEq<VolumeDB> for VolumeDB[src]
impl PartialOrd<VolumeDB> for VolumeDB[src]
fn partial_cmp(&self, other: &VolumeDB) -> Option<Ordering>[src]
fn lt(&self, other: &VolumeDB) -> bool[src]
fn le(&self, other: &VolumeDB) -> bool[src]
fn gt(&self, other: &VolumeDB) -> bool[src]
fn ge(&self, other: &VolumeDB) -> bool[src]
impl StructuralPartialEq for VolumeDB[src]
Auto Trait Implementations
impl RefUnwindSafe for VolumeDB[src]
impl Send for VolumeDB[src]
impl Sync for VolumeDB[src]
impl Unpin for VolumeDB[src]
impl UnwindSafe for VolumeDB[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,