Struct libspa_sys::spa_io_range
source · #[repr(C)]pub struct spa_io_range {
pub offset: u64,
pub min_size: u32,
pub max_size: u32,
}
Expand description
A range, suitable for input ports that can suggest a range to output ports
Fields§
§offset: u64
< offset in range
min_size: u32
< minimum size of data
max_size: u32
< maximum size of data
Trait Implementations§
source§impl Clone for spa_io_range
impl Clone for spa_io_range
source§fn clone(&self) -> spa_io_range
fn clone(&self) -> spa_io_range
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_io_range
impl Debug for spa_io_range
source§impl PartialEq for spa_io_range
impl PartialEq for spa_io_range
source§fn eq(&self, other: &spa_io_range) -> bool
fn eq(&self, other: &spa_io_range) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for spa_io_range
impl Eq for spa_io_range
impl StructuralPartialEq for spa_io_range
Auto Trait Implementations§
impl RefUnwindSafe for spa_io_range
impl Send for spa_io_range
impl Sync for spa_io_range
impl Unpin for spa_io_range
impl UnwindSafe for spa_io_range
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