Struct libpulse_binding::volume::Volume
[−]
[src]
pub struct Volume(pub pa_volume_t);
Software volume expressed as an integer
Methods
impl Volume[src]
pub fn is_muted(&self) -> bool[src]
pub fn is_normal(&self) -> bool[src]
pub fn is_max(&self) -> bool[src]
pub fn ui_max() -> Self[src]
Recommended maximum volume to show in user facing UIs. Note: UIs should deal gracefully with volumes greater than this value and not cause feedback loops etc. - i.e. if the volume is more than this, the UI should not limit it and push the limited value back to the server.
pub fn is_valid(&self) -> bool[src]
Check if volume is valid.
pub fn clamp(&mut self)[src]
Clamp volume to the permitted range.
pub fn multiply(a: Self, b: Self) -> Self[src]
Multiply two software volumes, return the result.
This uses VOLUME_NORM as neutral element of multiplication.
This is only valid for software volumes!
pub fn divide(a: Self, b: Self) -> Self[src]
Divide two software volumes, return the result.
This uses VOLUME_NORM as neutral element of division. This is
only valid for software volumes! If a division by zero is tried the result will be 0.
pub fn print(&self) -> String[src]
Pretty print a volume
pub fn print_db(&self) -> String[src]
Pretty print a volume but show dB values.
pub fn print_verbose(&self, print_db: bool) -> String[src]
Pretty print a volume in a verbose way.
The volume is printed in several formats: the raw volume value, percentage, and if
print_db is true, also the dB value.
Trait Implementations
impl Debug for Volume[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl Copy for Volume[src]
impl Clone for Volume[src]
fn clone(&self) -> Volume[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl PartialEq for Volume[src]
fn eq(&self, __arg_0: &Volume) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &Volume) -> bool[src]
This method tests for !=.
impl Eq for Volume[src]
impl PartialOrd for Volume[src]
fn partial_cmp(&self, __arg_0: &Volume) -> Option<Ordering>[src]
This method returns an ordering between self and other values if one exists. Read more
fn lt(&self, __arg_0: &Volume) -> bool[src]
This method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, __arg_0: &Volume) -> bool[src]
This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
fn gt(&self, __arg_0: &Volume) -> bool[src]
This method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, __arg_0: &Volume) -> bool[src]
This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
impl Ord for Volume[src]
fn cmp(&self, __arg_0: &Volume) -> Ordering[src]
This method returns an Ordering between self and other. Read more
fn max(self, other: Self) -> Self1.21.0[src]
Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self1.21.0[src]
Compares and returns the minimum of two values. Read more
impl Default for Volume[src]
impl From<VolumeDB> for Volume[src]
Convert a decibel value to a volume (amplitude, not power). This is only valid for software volumes!
impl From<Volume> for VolumeDB[src]
Convert a volume to a decibel value (amplitude, not power). This is only valid for software volumes!
impl From<VolumeLinear> for Volume[src]
Convert a linear factor to a volume.
0.0 and less is muted while 1.0 is VOLUME_NORM.
This is only valid for software volumes!
fn from(v: VolumeLinear) -> Self[src]
Performs the conversion.
impl From<Volume> for VolumeLinear[src]
Convert a volume to a linear factor. This is only valid for software volumes!