pub enum LargeFileLoadStrategy {
Constant(ConstantLargeFileLoadStrategy),
Dynamic(Box<dyn DynamicLargeFileLoadStrategy + Send + Sync>),
}Expand description
The large file load strategy, refer to ConstantLargeFileLoadStrategy to find how they work.
Variants§
Constant(ConstantLargeFileLoadStrategy)
Dynamic(Box<dyn DynamicLargeFileLoadStrategy + Send + Sync>)
Trait Implementations§
Source§impl Debug for LargeFileLoadStrategy
impl Debug for LargeFileLoadStrategy
Auto Trait Implementations§
impl Freeze for LargeFileLoadStrategy
impl !RefUnwindSafe for LargeFileLoadStrategy
impl Send for LargeFileLoadStrategy
impl Sync for LargeFileLoadStrategy
impl Unpin for LargeFileLoadStrategy
impl !UnwindSafe for LargeFileLoadStrategy
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