pub struct LargeScaleConfig {
pub max_memory_bytes: usize,
pub chunk_size: usize,
pub n_workers: usize,
pub use_memory_mapping: bool,
pub enable_compression: bool,
}Expand description
Configuration for large-scale baseline methods
Fields§
§max_memory_bytes: usizeMaximum memory usage in bytes
chunk_size: usizeChunk size for batch processing
n_workers: usizeNumber of parallel workers
use_memory_mapping: boolUse memory mapping for large datasets
enable_compression: boolEnable compression for intermediate results
Trait Implementations§
Source§impl Clone for LargeScaleConfig
impl Clone for LargeScaleConfig
Source§fn clone(&self) -> LargeScaleConfig
fn clone(&self) -> LargeScaleConfig
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 LargeScaleConfig
impl Debug for LargeScaleConfig
Auto Trait Implementations§
impl Freeze for LargeScaleConfig
impl RefUnwindSafe for LargeScaleConfig
impl Send for LargeScaleConfig
impl Sync for LargeScaleConfig
impl Unpin for LargeScaleConfig
impl UnwindSafe for LargeScaleConfig
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more