pub enum PendingOpType {
Read,
Write,
Sync,
SetLen,
Open,
}Expand description
Type of pending storage operation.
Variants§
Read
Read operation
Write
Write operation
Sync
Sync/flush operation
SetLen
Set file length operation
Open
File open operation
Trait Implementations§
Source§impl Clone for PendingOpType
impl Clone for PendingOpType
Source§fn clone(&self) -> PendingOpType
fn clone(&self) -> PendingOpType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for PendingOpType
Source§impl Debug for PendingOpType
impl Debug for PendingOpType
impl Eq for PendingOpType
Source§impl PartialEq for PendingOpType
impl PartialEq for PendingOpType
Source§fn eq(&self, other: &PendingOpType) -> bool
fn eq(&self, other: &PendingOpType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PendingOpType
Auto Trait Implementations§
impl Freeze for PendingOpType
impl RefUnwindSafe for PendingOpType
impl Send for PendingOpType
impl Sync for PendingOpType
impl Unpin for PendingOpType
impl UnsafeUnpin for PendingOpType
impl UnwindSafe for PendingOpType
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