[][src]Struct libpulse_binding::sample::Spec

#[repr(C)]
pub struct Spec {
    pub format: Format,
    pub rate: u32,
    pub channels: u8,
}

A sample format and attribute specification.

Fields

format: Format

The sample format.

rate: u32

The sample rate. (e.g. 44100).

channels: u8

Audio channels. (1 for mono, 2 for stereo, ...).

Methods

impl Spec[src]

pub fn init(&mut self)[src]

Initializes the specified sample spec.

The sample spec will have a defined state but is_valid will fail for it.

pub fn is_valid(&self) -> bool[src]

Checks if the sample type specification is valid.

pub fn equal_to(&self, to: &Self) -> bool[src]

Deprecated since 2.7.0:

use the PartialEq implementation instead

Checks if the two sample type specifications match.

pub fn bytes_per_second(&self) -> usize[src]

Gets the amount of bytes that constitute playback of one second of audio, with the specified sample type.

pub fn frame_size(&self) -> usize[src]

Gets the size of a frame.

pub fn sample_size(&self) -> usize[src]

Gets the size of a sample.

pub fn bytes_to_usec(&self, length: u64) -> MicroSeconds[src]

Calculates the time it would take to play a buffer of the specified size.

The return value will always be rounded down for non-integral return values.

pub fn usec_to_bytes(&self, t: MicroSeconds) -> usize[src]

Calculates the size of a buffer required, for playback duration of the time specified.

The return value will always be rounded down for non-integral return values.

pub fn print(&self) -> String[src]

Pretty prints a sample type specification to a string.

Trait Implementations

impl Copy for Spec[src]

impl AsMut<pa_sample_spec> for Spec[src]

impl Clone for Spec[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl PartialEq<Spec> for Spec[src]

#[must_use] fn ne(&self, other: &Rhs) -> bool1.0.0[src]

This method tests for !=.

impl AsRef<pa_sample_spec> for Spec[src]

impl AsRef<Spec> for pa_sample_spec[src]

impl From<pa_sample_spec> for Spec[src]

impl Eq for Spec[src]

impl Debug for Spec[src]

Auto Trait Implementations

impl Sync for Spec

impl Unpin for Spec

impl Send for Spec

impl UnwindSafe for Spec

impl RefUnwindSafe for Spec

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]