pub enum Start {
Beginning,
Time(Duration),
Frame(usize),
}Expand description
Starting position in the audio stream
Variants§
Beginning
Start from the beginning of the audio
Time(Duration)
Start at a specific time offset
Frame(usize)
Start at a specific frame number (sample position across all channels)
Trait Implementations§
impl Copy for Start
Auto Trait Implementations§
impl Freeze for Start
impl RefUnwindSafe for Start
impl Send for Start
impl Sync for Start
impl Unpin for Start
impl UnwindSafe for Start
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