Enum virtual_fs::cow_file::CowState
source · enum CowState {
ReadOnly(Box<dyn VirtualFile + Send + Sync>),
Copying {
pos: u64,
inner: Box<dyn VirtualFile + Send + Sync>,
},
Copied,
}
Variants§
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CowState
impl !RefUnwindSafe for CowState
impl Send for CowState
impl Sync for CowState
impl Unpin for CowState
impl !UnwindSafe for CowState
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