#[repr(u8)]pub enum FileOpMode {
Sequential = 0,
ParallelOrdered = 1,
ParallelUnordered = 2,
}Expand description
Execution mode for file operations.
Variants§
Trait Implementations§
Source§impl Clone for FileOpMode
impl Clone for FileOpMode
Source§fn clone(&self) -> FileOpMode
fn clone(&self) -> FileOpMode
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 FileOpMode
impl Debug for FileOpMode
Source§impl PartialEq for FileOpMode
impl PartialEq for FileOpMode
impl Copy for FileOpMode
impl Eq for FileOpMode
impl StructuralPartialEq for FileOpMode
Auto Trait Implementations§
impl Freeze for FileOpMode
impl RefUnwindSafe for FileOpMode
impl Send for FileOpMode
impl Sync for FileOpMode
impl Unpin for FileOpMode
impl UnsafeUnpin for FileOpMode
impl UnwindSafe for FileOpMode
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> Variant for T
impl<T> Variant for T
Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert this
Variant trait object to &mut dyn Any.Source§fn as_boxed_any(self: Box<T>) -> Box<dyn Any>
fn as_boxed_any(self: Box<T>) -> Box<dyn Any>
Convert this
Variant trait object to Box<dyn Any>.