#[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 duplicate 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
impl Copy for spa_io_range
impl Eq for spa_io_range
impl StructuralPartialEq for spa_io_range
Auto Trait Implementations§
impl Freeze for spa_io_range
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