pub struct ProcessingOptions {
pub enable_caching: bool,
pub max_cache_size: usize,
pub parallel_processing: bool,
pub memory_limit_mb: Option<usize>,
}Expand description
Metadata processing options
Fields§
§enable_caching: bool§max_cache_size: usize§parallel_processing: bool§memory_limit_mb: Option<usize>Trait Implementations§
Source§impl Clone for ProcessingOptions
impl Clone for ProcessingOptions
Source§fn clone(&self) -> ProcessingOptions
fn clone(&self) -> ProcessingOptions
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 ProcessingOptions
impl Debug for ProcessingOptions
Auto Trait Implementations§
impl Freeze for ProcessingOptions
impl RefUnwindSafe for ProcessingOptions
impl Send for ProcessingOptions
impl Sync for ProcessingOptions
impl Unpin for ProcessingOptions
impl UnwindSafe for ProcessingOptions
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