[−][src]Struct libpulse_binding::sample::Spec
A sample format and attribute specification
Fields
format: FormatThe sample format.
rate: u32The sample rate. (e.g. 44100).
channels: u8Audio channels. (1 for mono, 2 for stereo, ...).
Methods
impl Spec[src]
pub fn init(&mut self)[src]
Initialize 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]
Returns true when the sample type specification is valid
pub fn equal_to(&self, to: &Self) -> bool[src]
Returns true when the two sample type specifications match
pub fn bytes_per_second(&self) -> usize[src]
Returns the amount of bytes that constitute playback of one second of audio, with the specified sample type.
pub fn frame_size(&self) -> usize[src]
Returns the size of a frame
pub fn sample_size(&self) -> usize[src]
Returns the size of a sample
pub fn bytes_to_usec(&self, length: u64) -> MicroSeconds[src]
Calculate 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 print a sample type specification to a string
Trait Implementations
impl Clone for Spec[src]
fn clone(&self) -> 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]
impl Eq for Spec[src]
impl Copy for Spec[src]
impl Debug for Spec[src]
Auto Trait Implementations
Blanket Implementations
impl<T> From for T[src]
impl<T, U> Into for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
impl<T, U> TryFrom for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T> Borrow for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> BorrowMut for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,