pub struct RawFileBuilder { /* private fields */ }Expand description
Builder for opening RawFile with custom tuning parameters.
Implementations§
Source§impl RawFileBuilder
impl RawFileBuilder
Sourcepub fn clusters_per_read(self, clusters_per_read: usize) -> Self
pub fn clusters_per_read(self, clusters_per_read: usize) -> Self
Set how many clusters are attempted per read call.
Minimum accepted value is 1.
Sourcepub fn metadata_buffer_capacity(self, metadata_buffer_capacity: usize) -> Self
pub fn metadata_buffer_capacity(self, metadata_buffer_capacity: usize) -> Self
Set the internal metadata work buffer capacity.
Minimum accepted value is 4096 bytes.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RawFileBuilder
impl RefUnwindSafe for RawFileBuilder
impl Send for RawFileBuilder
impl Sync for RawFileBuilder
impl Unpin for RawFileBuilder
impl UnsafeUnpin for RawFileBuilder
impl UnwindSafe for RawFileBuilder
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