pub struct OutOfCoreConfig {
pub rows: usize,
pub cols: usize,
pub chunk_rows: usize,
pub temp_dir: PathBuf,
}Expand description
Configuration for OutOfCoreFft2D.
Fields§
§rows: usizeNumber of rows in the 2-D array.
cols: usizeNumber of columns in the 2-D array.
chunk_rows: usizeRows processed in-memory at once. A larger value uses more RAM but
requires fewer I/O passes. Must be at least 1 and at most rows.
temp_dir: PathBufDirectory for temporary files. Defaults to std::env::temp_dir().
Trait Implementations§
Source§impl Clone for OutOfCoreConfig
impl Clone for OutOfCoreConfig
Source§fn clone(&self) -> OutOfCoreConfig
fn clone(&self) -> OutOfCoreConfig
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 moreAuto Trait Implementations§
impl Freeze for OutOfCoreConfig
impl RefUnwindSafe for OutOfCoreConfig
impl Send for OutOfCoreConfig
impl Sync for OutOfCoreConfig
impl Unpin for OutOfCoreConfig
impl UnsafeUnpin for OutOfCoreConfig
impl UnwindSafe for OutOfCoreConfig
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