pub struct TrackStreamConfig {
pub sectors_per_chunk: u32,
pub retry: RetryConfig,
}Expand description
Configuration for streamed track reads.
Fields§
§sectors_per_chunk: u32Target chunk size in sectors for each next_chunk call.
27 sectors is approximately 64 KiB of CD-DA payload.
retry: RetryConfigRetry policy applied to each chunk read.
Trait Implementations§
Source§impl Clone for TrackStreamConfig
impl Clone for TrackStreamConfig
Source§fn clone(&self) -> TrackStreamConfig
fn clone(&self) -> TrackStreamConfig
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 TrackStreamConfig
impl Debug for TrackStreamConfig
Auto Trait Implementations§
impl Freeze for TrackStreamConfig
impl RefUnwindSafe for TrackStreamConfig
impl Send for TrackStreamConfig
impl Sync for TrackStreamConfig
impl Unpin for TrackStreamConfig
impl UnwindSafe for TrackStreamConfig
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