pub struct OpenOptions {
pub chunk_cache_bytes: usize,
pub chunk_cache_slots: usize,
pub filter_registry: Option<FilterRegistry>,
}Expand description
Configuration options for opening an HDF5 file.
Fields§
§chunk_cache_bytes: usizeMaximum bytes for the chunk cache. Default: 64 MiB.
chunk_cache_slots: usizeMaximum number of chunk cache slots. Default: 521.
filter_registry: Option<FilterRegistry>Custom filter registry. If None, the default built-in filters are used.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for OpenOptions
impl !RefUnwindSafe for OpenOptions
impl Send for OpenOptions
impl Sync for OpenOptions
impl Unpin for OpenOptions
impl UnsafeUnpin for OpenOptions
impl !UnwindSafe for OpenOptions
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> 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