Struct libspa_sys::spa_latency_info
source · #[repr(C)]pub struct spa_latency_info {
pub direction: spa_direction,
pub min_quantum: f32,
pub max_quantum: f32,
pub min_rate: u32,
pub max_rate: u32,
pub min_ns: u64,
pub max_ns: u64,
}
Expand description
helper structure for managing latency objects
Fields§
§direction: spa_direction
§min_quantum: f32
§max_quantum: f32
§min_rate: u32
§max_rate: u32
§min_ns: u64
§max_ns: u64
Trait Implementations§
source§impl Clone for spa_latency_info
impl Clone for spa_latency_info
source§fn clone(&self) -> spa_latency_info
fn clone(&self) -> spa_latency_info
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 spa_latency_info
impl Debug for spa_latency_info
source§impl PartialEq for spa_latency_info
impl PartialEq for spa_latency_info
source§fn eq(&self, other: &spa_latency_info) -> bool
fn eq(&self, other: &spa_latency_info) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for spa_latency_info
impl StructuralPartialEq for spa_latency_info
Auto Trait Implementations§
impl RefUnwindSafe for spa_latency_info
impl Send for spa_latency_info
impl Sync for spa_latency_info
impl Unpin for spa_latency_info
impl UnwindSafe for spa_latency_info
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