pub struct SeekResult {
pub frame_index: u32,
pub skip_samples: u32,
pub actual_sample: u64,
}Expand description
Result of a seek operation.
Fields§
§frame_index: u32Frame index containing the target sample.
skip_samples: u32Number of samples to skip within the decoded frame.
actual_sample: u64The exact sample position reached.
Trait Implementations§
Source§impl Clone for SeekResult
impl Clone for SeekResult
Source§fn clone(&self) -> SeekResult
fn clone(&self) -> SeekResult
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 SeekResult
impl Debug for SeekResult
impl Copy for SeekResult
Auto Trait Implementations§
impl Freeze for SeekResult
impl RefUnwindSafe for SeekResult
impl Send for SeekResult
impl Sync for SeekResult
impl Unpin for SeekResult
impl UnsafeUnpin for SeekResult
impl UnwindSafe for SeekResult
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